儘管路徑正確,但我的網站圖像均未加載。在我的 Apache 日誌中,我有很多:
(13)Permission denied: [client 87.231.108.18:57108] AH00035: access to my/file/path/some-photo.jpg denied because search permissions are missing on a component of the path
在httpd.conf
檔案中:
User apache Group apache
一直到我的網站目錄,資料夾歸 apache:apache
所有,chmod
一直設定為 774
。
SELinux 布林值 httpd_can_network_connect
已On
。
我正在使用 .htaccess
檔案將我的網域重定向到適當的目錄。我懷疑這可能是問題的原因,但是......這只不過是一種直覺。
我確實需要幫助,非常歡迎任何建議。 非常感謝!
編輯 .htaccess 檔案的內容:
RewriteEngine On Options +FollowSymLinks RewriteCond %{HTTP_HOST} ^domain.com$ [NC] RewriteRule ^(.*)$ http://www.domain.com/ [R=301,L] RewriteCond %{HTTP_HOST} www.domain.com RewriteRule (.*) /domain/ [L]
P粉6474494442023-10-20 00:17:22
我終於找到了!非常感謝 Justin lurman 指出了 .htaccess 檔案。它讓我看到 Wordpress 不再有權利編輯我的 .htaccess 檔案。 這更奇怪,因為我 100% 確定權限是好的(如果你問我的話,甚至是太寬鬆了)。
所以我研究了 SElinux,因為我知道它有時會欺騙我,而我是對的。 發出以下命令解決了這個問題:
chcon -R --type=httpd_sys_rw_content_t wp-content/
我希望對其他人有幫助:)