1
在我的.htaccess文件,我的默認代碼是這樣的:WordPress的重寫URL的index.php
# 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
我想做的事,當我打開mydomain.com將我重定向到是mydomain.com/?page_id=2(但url保持爲mydomain.com)。我應該怎麼做?
nope它不工作,我得到了「500內部服務器錯誤」... –
@VincentChua檢查我的編輯 –
謝謝它的作品:) –