問題:You don't have permission to access /index.html on this server.
原因:index.html是用root用戶建的文件,apache權(quán)限不夠。
解決方法:更改文件權(quán)限;chmod 755 index.html
如果是WIN 2003下出現(xiàn)這個問題,請按以下方式解決:
打開apache配置文件httpd.conf,找到這么一段:
<Directory /> Options FollowSymLinks AllowOverride None Order deny,allow deny from all Satisfy all </Directory>
然后試著把deny from all中的deny改成了allow,保存后重起了apache,然后測試網(wǎng)頁,訪問測試網(wǎng)站完全正常了。
第二種方法是Apache的配置文件httpd-vhosts.conf里,打開擴(kuò)展配置
# Virtual hosts Include conf/extra/httpd-vhosts.conf
前面的#去掉了,就引入了擴(kuò)展配置,而擴(kuò)展配置 文件里又沒配好相應(yīng) 的權(quán)限“Allow from all”,所以提示此錯誤。
推薦教程:PHP視頻教程
聲明:本網(wǎng)頁內(nèi)容旨在傳播知識,若有侵權(quán)等問題請及時與本網(wǎng)聯(lián)系,我們將在第一時間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com