首页 > php教程 > php手册 > 正文

apache配置

WBOY
发布: 2016-08-31 08:40:56
原创
1172 人浏览过
<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
 

相关标签:
来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门推荐
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责声明 Sitemap
PHP中文网:公益在线PHP培训,帮助PHP学习者快速成长!