我使用的xampp 1、修改C:\Windows\System32\drivers\etc中的hosts文件,添加127.0.0.1 www.feiquan.com 2、修改D:\xampp\apache\conf\extra中的httpd-vhosts.conf,添加 3. 配置D:\xampp\ ...
我使用的xampp
1、修改C:\Windows\System32\drivers\etc中的hosts文件,添加127.0.0.1 www.feiquan.com
2、修改D:\xampp\apache\conf\extra中的httpd-vhosts.conf,添加
<VirtualHost *:80> DocumentRoot "網站路徑" ServerName www.feiquan.com ErrorLog "logs/www.feiquan.com-error.log" CustomLog "logs/www.feiquan.com-access.log" common </VirtualHost>
3. 配置D:\xampp\apache\conf\httpd.conf
3.1:將Listen 80給為Listen 自己的ip:80
3.2將Servername localhost:80改為 自己的ip:80
3.3在文件最後添加:
<Directory "網站路徑"> AllowOverride None Options None Order allow,deny Allow from all </Directory>
3.4如果還不行 ,那可能還需要配置xampp\apache\conf\extra\httpd-xampp.conf中的httpd-xampp.conf
按3.3的方法,將Deny改為Allow
重啟apache服務。