直接輸入地址顯示
Forbidden
You don't have permission to access /news/search_fdsafdsa on this server.
httpd.conf,找到這麼一段:
代碼如下<Directory />
Options FollowSymLinks
AllowOverride None
Order deny,allow
deny from all
Satisfy all
</Directory>
然後試著把deny
from all中的deny改成了allow,保存後重起了apache,然後再一測試我的網頁,哈哈
ps 403禁止訪問 主要民apache中的 Order deny,allow deny影響到了,我們要解決它只需要把deny改成了allow就可以了,當然還有問題就是服務器權限問題。
確保web文件夾下有index.html文件(或名為index而後綴為其他形式(如.jsp .php等)的文件) ,因為Apache默認以index.html為網站首頁,如果沒有這個文件就會出現上面的403錯誤。
代碼如下<IfModule dir_module>
DirectoryIndex index.html
</IfModule>
改為(如你想用index.jsp):
代碼如下 <IfModule dir_module>
DirectoryIndex index.html index.jsp
</IfModule>
如果需要浏覽該文件夾下的內容,可以在前添加:
代碼如下Options Indexes
就可以了。