Heim  >  Artikel  >  php教程  >  apache配置

apache配置

WBOY
WBOYOriginal
2016-08-31 08:40:561173Durchsuche
<virtualhost><span style="color: #000000;">
    ServerAdmin webmaster@dummy</span>-host2.example.<span style="color: #000000;">com
    ServerAdmin webmaster@dummy</span>-host.example.<span style="color: #000000;">com
    DocumentRoot </span>"e:/www/WapSources/01 code"<span style="color: #000000;">
    ServerName wap</span>.weilan.<span style="color: #000000;">com
    </span><span style="color: #008000;">#</span><span style="color: #008000;">ServerAlias www.dummy-host.example.com</span>
    <span style="color: #008000;">#</span><span style="color: #008000;">ErrorLog "logs/dummy-host.example.com-error.log"</span>
    <span style="color: #008000;">#</span><span style="color: #008000;">CustomLog "logs/dummy-host.example.com-access.log" common</span>
    
    <directory code><span style="color: #000000;">
        Options Indexes FollowSymLinks
        AllowOverride all
        Order allow</span>,<span style="color: #000000;">deny
        Allow from all
    </span></directory>
    <ifmodule mod_rewrite.c><span style="color: #000000;">
        RewriteEngine on
        RewriteCond </span>%{REQUEST_METHOD} ^(TRACE|<span style="color: #000000;">TRACK)
        RewriteRule </span>.* -<span style="color: #000000;"> [F]
        Rewriterule </span>^(.*)/(.*)/index.html$ $1/index.php?$2<span style="color: #000000;">
        Rewriterule </span>^(.*)/(.*)/index(\d+).html$ $1/index.php?$2&page=$3<span style="color: #000000;">
        Rewriterule </span>^(.*)/(.*)/a(\d+)\.html$ $1/index.php?$2/$3<span style="color: #000000;">
        Rewriterule </span>^(.*)/u/(\d+)/(.*)$ $1/index.php?u&$2&$3<span style="color: #000000;">
        Rewriterule </span>^(.*)/u/(\d+)/(.*)/$ $1/index.php?u&$2&$3<span style="color: #000000;">
        Rewriterule </span>^(.*)/u/(\d+)$ $1/index.php?u&$2<span style="color: #000000;">
        Rewriterule </span>^(.*)/u/(\d+)/$ $1/index.php?u&$2<span style="color: #000000;">
        Rewriterule </span>^(.*)/(.*)/index.html\?(.*) $1/index.php?$2&$3<span style="color: #000000;">
        Rewriterule </span>^(.*)/(.*)/index(\d+).html\?(.*) $1/index.php?$2&$3<span style="color: #000000;">
        Rewriterule </span>^(.*)/index.action(.*) $1/index.php$3
    </ifmodule>
    
</virtualhost>

简洁版:

#指定自己的哪个网卡的哪个IP地址,可以访问虚拟主机
NameVirtualHost *:80

 #指定虚拟主机的域名
 ServerName yangzailu.com
 #指定虚拟目录
 DocumentRoot "e:/www/web1"
 #指定目录权限
 
       Options Indexes FollowSymLinks
       AllowOverride All
       Order Deny,Allow
       Deny from all
       Allow from all
 

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Vorheriger Artikel:ajax跳转传参Nächster Artikel:初始化当前平台