首頁  >  文章  >  php教程  >  apache配置

apache配置

WBOY
WBOY原創
2016-08-31 08:40:561175瀏覽
<VirtualHost *:80><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 "e:/www/WapSources/01 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
 

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
上一篇:ajax跳轉傳參下一篇:ajax跳轉傳參