localhost:8080能訪問(wèn),但改回去80就不行了
localhost:8080能訪問(wèn),但改回去80就提示
Forbidden
You don't have permission to access /textceshi.php on this server.
localhost:8080能訪問(wèn),但改回去80就提示
Forbidden
You don't have permission to access /textceshi.php on this server.
2015-01-20
舉報(bào)
2015-01-21
<VirtualHost *:80>?
? ? ServerName 訪問(wèn)域名 如:www.baidu.com
? ? DocumentRoot "訪問(wèn)文件路徑 如:D:/wamp/www/blog/"?
? ? <Directory "訪問(wèn)文件路徑 如:D:/wamp/www/blog/">?
? ? Options FollowSymLinks IncludesNOEXEC?
? ? DirectoryIndex index.htm index.html default.htm index.php default.php index.cgi default.cgi index.pl default.pl index.shtml?
? ? AllowOverride All?
? ? Order Deny,Allow?
? ? Allow from all?
? ? </Directory>?
</VirtualHost>
2015-01-20
Order deny,allow
Deny from all
Satisfy all
Apache配置加上以上語(yǔ)句就可以了.!