我真的很努力地找到答案。當我將我的WordPress站點從本地主機移動到遠程服務器時,我的鏈接無法正常工作。它顯示:將我的WordPress網站從本地服務器遷移到遠程服務器後,永久連接不工作
The requested URL /project/investment was not found on this server.
我不知道是什麼問題。我搜查了很多,但我無法找到正確的解決方案。我使用html而不是WordPress導航菜單創建了菜單欄。
這裏是我的.htaccess
代碼
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteBase /newsite.in/project/
RewriteRule^index\.php$-[L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ./newsitein/project/index.php [L]
</IfModule>
我不知道如何去改變它。誰能幫幫我嗎?
是否在遠程服務器上啓用了「mod_rewrite」? – naththedeveloper
更新一次你從WordPress的'Permalink'後退管理員。這將重寫你的規則。並會工作。 –