我想将页面http://www.unived.in/重定向到http://www.unived.in/aboutus/。我尝试了很多插件,但页面仍然没有被重定向。事实上,我已经尝试更改 .htaccess 但它仍然无法正确重定向。有时它会显示错误 500。
这是我的.htaccess:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond /home/unived/public_html/wp-content/sitemaps%{REQUEST_URI} -f
RewriteRule \.xml(\.gz)?$ /wp-content/sitemaps%{REQUEST_URI} [L]
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
我需要做什么才能使重定向工作?