我有一個WordPress網站。這在xampp上完美運行,但現在我已經遷移到lampp(Apache)。只有主頁正在工作。其他頁面未找到。這是我的htacces文件代碼。on localhost只有主頁在wordpress站點上工作
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /website/
RewriteRule ^index\.php$ - [L]
RewriteRule ^unsubscribe/$ /website/wp-content/plugins/email- newsletter/unsubscribe/unsubscribe.php [QSA,L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /website/index.php [L]
</IfModule>
# END WordPress
你可以使用管理員區嗎? –
是的,管理員是可以訪問的。 –
請檢查wordpress是否有權寫入.htaccess –