标签:ant 没有 ack 另一个 根目录 rri city keyword doc
- Apache2.4
- 一个或多个本地网站
打开Apache的httpd.conf配置文件[apache_dir/conf/httpd.conf]
引用子配置文件httpd_vhosts.conf(将原本第二行有的注释”#”去掉即可)
# Virtual hosts
Include conf/extra/httpd-vhosts.conf
打开Apache的子配置文件——httpd-vhosts.conf [apache_dir/conf/extra/httpd-vhosts.conf]
然后在后面添加如下代码
<VirtualHost *:80>
# 管理员邮箱
ServerAdmin 3dkltsyt@gmail.com
# 网站根目录
DocumentRoot "C:/Develop/Prj/web/LMS"
# 网站域名
ServerName test2.dowhat.com
# log文件保存路径
ErrorLog "C:/ServerLogs/error.log"
CustomLog "C:/ServerLogs/access.log" common
# 该虚拟主机根目录权限相关设置
<Directory />
# 允许根目录中的.htaccess生效并覆盖此处设置
AllowOverride All
# 允许该目录所有的用户操作权限
Require all granted
</Directory>
</VirtualHost>
<VirtualHost *:80>
ServerAdmin 3dkltsyt@gmail.com
# 另一个网站根目录
DocumentRoot "C:/Develop/Prj/web/ecnu_mind"
# 另一个网站的域名
ServerName test2.dowhat.com
ErrorLog "C:/ServerLogs/error.log"
CustomLog "C:/ServerLogs/access.log" common
<Directory />
AllowOverride All
Require all granted
</Directory>
</VirtualHost>
127.0.0.1 test.dowhat.com
127.0.0.1 test2.dowhat.com
二者的端口都为80,通过这种本地dns解析(hosts文件)联合apache自动关联ServerName的方式,让这两个网站都独立工作,并且可以通过不同的域名(test.dowhat.com和test2.dowhat.com)登录两个网站。
是不是看上去和真的网站一样呢?XD
# 允许在该目录下的所有符号链接(软连接,即文件中的连接路径,包括下面的URL重写所代表的路径,所以必须要有,同时不启用indexes以防止用户直接查看网站目录)
Options FollowSymlinks
# 默认索引文件为index.php
DirectoryIndex index.php
<IfModule mod_rewrite.c>
# url重启模块开启
RewriteEngine On
# url重写条件匹配-d文件夹,-f文件
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
# 在URL中省略index.php
RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]
</IfModule>
标签:ant 没有 ack 另一个 根目录 rri city keyword doc
原文地址:http://www.cnblogs.com/houdingfang/p/7025373.html