我在AWS EC2实例中创建了一个Wordpress目录。我想将主页www.website.com重定向到www.website.com/landing,而不会破坏网站的其他部分。
我已经在stackflow中尝试了许多类似问题的答案,但似乎无法让它正常工作。
我尝试在bitnami / apps / wordpress / htdocs中编辑.htaccess文件。当前的.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
如前所述,我已经尝试了许多其他建议而没有成功。我应该更改其他.htaccess文件吗?我刚刚没有使用正确的规则吗?如果是这样,那么适当的规则是什么?
我为这里的无知道歉,谢谢你看看!
答案 0 :(得分:1)
我相信^$
匹配主机的根。
尝试将此添加到.htaccess文件的顶部。
RewriteEngine On
RewriteRule ^$ /landing [R,L]