0

我想将页面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

我需要做什么才能使重定向工作?

4

1 回答 1

0

阅读本教程以了解有关 mod_rewrite 的更多信息:http ://www.webforgers.net/mod-rewrite/mod-rewrite-syntax.php

它非常详细,应该可以帮助您实现目标。

于 2013-06-10T11:35:28.410 回答