我想将网页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
如何使重定向工作?
答案 0 :(得分:0)
阅读本教程以了解有关mod_rewrite的更多信息:http://www.webforgers.net/mod-rewrite/mod-rewrite-syntax.php
它非常详细,应该可以帮助您实现目标。