我正在努力让 /about 的任何内容都进入 /our-story。
我认为我的 .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]
这条线在这里:
RewriteRule ^about.*$ http://domain.com/our-story/ [R=301,L]
</IfModule>
但是,它似乎不起作用。我怀疑这是由于 Wordpress 处于活动状态。我试图把它放在 Wordpress 块中,但它仍然不起作用。
我需要做什么才能从 to/about
重定向/our-story
?