在我的.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
我想要做的是当我打开 mydomain.com 时,它会将我重定向到 mydomain.com/?page_id=2 (但网址仍为 mydomain.com )。我该怎么做?
答案 0 :(得分:1)
请将它放在您的.HTACCESS文件中:
RewriteEngine On
RewriteRule ^ $ /?page_id = 2 [L]
修改强>
您也可以从Wordpress管理页面进行设置:转到设置 - &gt;阅读并在“首页显示”设置为“静态页面(选择下方)”,然后从“首页:”页面的下拉列表中选择。