我有一個WordPress的WooCommerce網站,有幾個不同的插件。最近,每月大約一次嘗試加載主頁以外的任何頁面都會導致404錯誤。我已經知道這是因爲某些重置.htaccess文件是完全空白的。一旦我重新上傳我的備份,它就會被修復。在網上尋找答案,它似乎可能是一個插件造成這一點,但我不知道哪一個,爲什麼現在呢?我還看到關於#BEGIN Wordpress的建議...#END Wordpress,但是.htaccess文件中已經存在這些信息,以及其他一些代碼,我不完全確定它來自哪裏。有關如何防止這種情況發生的建議?我的.htaccess權限目前是644,這裏是我的代碼:。wordpress網站上的.htaccess不斷空白
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase/
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
<IfModule mod_mime.c>
AddType application/x-javascript .js
AddType text/css .css
</IfModule>
<IfModule mod_deflate.c>
AddOutputFilterByType DEFLATE text/css application/x-javascript text/x-component text/html text/richtext image/svg+xml text/plain text/xsd text/xsl text/xml image/x-icon application/javascript
<IfModule mod_setenvif.c>
BrowserMatch ^Mozilla/4 gzip-only-text/html
BrowserMatch ^Mozilla/4\.0[678] no-gzip
BrowserMatch \bMSIE !no-gzip !gzip-only-text/html
</IfModule>
<IfModule mod_headers.c>
Header append Vary User-Agent env=!dont-vary
</IfModule>
</IfModule>