标签:
1.更改为一下内容(有两部分)
<Directory "E:/wamp/bin/apache/apache2.4.9/cgi-bin">
AllowOverride None
Options None
Require all granted
</Directory>
# onlineoffline tag - don‘t remove
Require all granted
allow from all
</Directory>
1.更改以下内容
<IfModule dir_module>
DirectoryIndex index.php index.php3 index.html index.htm
</IfModule>
2.如果localhost文件夹中没有上面所包含的页面,地址栏输入localhost将显示localhost文件夹内的文件
error_reporting = E_ALL & ~E_NOTICE
php.ini文件里的 date.timezone = prc(中国时区)
httpd.conf文件修改,
AllowOverride all
Require all granted
allow from all
<VirtualHost *:80>
ServerName blog
DocumentRoot "E:/blog"
<Directory "E:/blog">
Options Indexes FollowSymLinks
AllowOverride all
Order Allow,Deny
Allow from all
</Directory>
</VirtualHost>
文件位置:C:\Windows\System32\drivers\etc
127.0.0.1 blog
- 注意:
1. Options Indexes FollowSymLinks 如果没有,则禁止 Apache 显示该目录结构。用户就不会看到该目录下的文件和子目录列表了。
2. 第一次输入第二站点时,需要在地址前面带上http://(不知道为什么)
标签:
原文地址:http://www.cnblogs.com/chenmenghui/p/5937290.html