ホームページ  >  記事  >  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 までご連絡ください。