最新文章專題視頻專題問答1問答10問答100問答1000問答2000關(guān)鍵字專題1關(guān)鍵字專題50關(guān)鍵字專題500關(guān)鍵字專題1500TAG最新視頻文章視頻文章20視頻文章30視頻文章40視頻文章50視頻文章60 視頻文章70視頻文章80視頻文章90視頻文章100視頻文章120視頻文章140 視頻2關(guān)鍵字專題關(guān)鍵字專題tag2tag3文章專題文章專題2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章專題3
當(dāng)前位置: 首頁 - 科技 - 知識百科 - 正文

php用戶權(quán)限不足怎么辦

來源:懂視網(wǎng) 責(zé)編:小采 時間:2020-11-27 15:20:46
文檔

php用戶權(quán)限不足怎么辦

php用戶權(quán)限不足怎么辦:問題: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)這個問題,請按以下方式
推薦度:
導(dǎo)讀php用戶權(quán)限不足怎么辦:問題: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)這個問題,請按以下方式

問題: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

文檔

php用戶權(quán)限不足怎么辦

php用戶權(quán)限不足怎么辦:問題: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)這個問題,請按以下方式
推薦度:
標(biāo)簽: 怎么辦 用戶 權(quán)限
  • 熱門焦點(diǎn)

最新推薦

猜你喜歡

熱門推薦

專題
Top