apache出現 403 permission 和404 not fund錯誤(解決方法)
今天搭建多版本apache+php環境,出現"403 You don't have permission to access / on this server"錯誤,具體如下,修改之後出現404 not fund錯誤。
----404錯誤
是否使用了虛擬主機,如果使用了就修改httpd-vhosts.conf的相關配置。
----403錯誤
今天在windows上搭建php環境,配置完成後,在瀏覽器中執行出現在You don't have permission to access / on this server. 提示。查了一下apache手冊找到問題所在處。這裡定義了預設對網站根的訪問許可權。
----404錯誤
找到下面一行,同時檢視httpd-vhosts.conf的相關配置
# Virtual hosts
Include conf/httpd-vhosts.conf是否使用了虛擬主機,如果使用了就修改httpd-vhosts.conf的相關配置。
----403錯誤
今天在windows上搭建php環境,配置完成後,在瀏覽器中執行出現在You don't have permission to access / on this server. 提示。查了一下apache手冊找到問題所在處。這裡定義了預設對網站根的訪問許可權。
# Each directory to which Apache has access can be configured with respect
# to which services and features are allowed and/or disabled in that
# directory (and its subdirectories).
#
# First, we configure the "default" to be a very restrictive set of
# features.
#
<Directory />
Options FollowSymLinks
AllowOverride None
Order deny,allow
Deny from all
</Directory>
這裡改成# to which services and features are allowed and/or disabled in that
# directory (and its subdirectories).
#
# First, we configure the "default" to be a very restrictive set of
# features.
#
<Directory />
Options FollowSymLinks
AllowOverride None
Order deny,allow
Deny from all
</Directory>
<Directory />
Options Indexes FollowSymLinks
AllowOverride None
</Directory>
問題解決
Options Indexes FollowSymLinks
AllowOverride None
</Directory>
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/3090/viewspace-1788287/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- nginx出現403錯誤的解決方法Nginx
- PbootCMS 404 錯誤解決方法boot
- springMVC資料驗證出現404錯誤解決辦法SpringMVC
- 402、403、404、502等閘道器錯誤的解決辦法都在這了!
- 如何解決apache 403錯誤問題?Linux學習教程ApacheLinux
- 虛擬主機伺服器錯誤404解決方法伺服器
- git push出現Permission denied (publickey)錯誤Git
- svn 提交時報錯403 Forbidden 解決方法ORB
- Nginx出現413 Request Entity Too Large錯誤解決方法Nginx
- 隨身碟出現防寫錯誤的解決方法
- Python: 安裝 sklearn 包出現錯誤的解決方法Python
- php抓取https網址出現錯誤的解決方法PHPHTTP
- 伺服器出現 HTTP 錯誤程式碼,及解決方法伺服器HTTP
- 伺服器出現404錯誤怎麼處理伺服器
- sql出現結果集錯誤以及出現ora-600或者ora-7445錯誤的解決方法思路SQL
- scp出現錯誤的解決辦法
- 編譯EJB出現錯誤的解決編譯
- ontape出現段錯誤(未解決篇)
- XP系統出現記憶體讀寫錯誤解決方法記憶體
- git出現Permission denied的解決辦法Git
- /initrd目錄的作用和當刪除時出現的錯誤解決方法(轉)
- 解決織夢dedecms管理員後臺提示404錯誤
- 電腦404頁面怎麼恢復 404錯誤頁面怎麼解決
- Grafana Nginx 403 Origin not allowed 及 ws websocket連線錯誤解決GrafanaNginxWeb
- exchange出現1025錯誤!(未解決)
- ant構建時出現錯誤解決方案
- Mysql出現連線錯誤解決辦法MySql
- win10 mstsc出現內部錯誤怎麼修復_win10 mstsc出現內部錯誤解決方法Win10
- 安裝vCenter Server出現1603錯誤的一種解決方法Server
- git push出現unpack failed: error Missing tree錯誤的解決方法GitAIError
- windows10系統升級助手出現錯誤的解決方法Windows
- Spring websocket瀏覽器連線時出現404錯誤SpringWeb瀏覽器
- Target runtime Apache Tomcat v6.0 is not defined.錯誤解決方法ApacheTomcat
- vsftpd 錯誤:530 and 500 錯誤解決方法FTP
- Win10系統愛奇藝出現504錯誤程式碼的解決方法Win10
- 連線MySQL出現2013錯誤解決MySql
- tp5 url 線上訪問 在nginx 上 出現404錯誤,解決辦法(1.80nginx 配置 pathInfo)Nginx
- 【知識分享】伺服器出現404錯誤怎麼處理伺服器