如何将主页重定向到其他网址?

时间:2015-04-15 13:59:14

标签: html .htaccess

我的主页目前是website.com

但我希望首页为website.com/home,如果有人访问website.com,我希望将其重定向到website.com/home

如何通过.htaccess

实现这一目标

4 个答案:

答案 0 :(得分:0)

在.htaccess中你应该有这样的东西:

  • 重定向/oldfile.html http://websitename.com/newfile.html


作为参考,这些人也提供了HowTo的一个很好的例子:
http://kb.mediatemple.net/questions/242/How+do+I+redirect+my+site+using+a+.htaccess+file%3F

答案 1 :(得分:0)

此代码应该有效。

RewriteEngine on
RewriteCond %{HTTP_HOST} ^website\.com$
RewriteRule (.*) http://www.website.com/home [R=301,L]

你应该把它放在website.com上的.htaccess文件中

答案 2 :(得分:0)

在HTML中,您可以在头部添加:

<meta http-equiv="refresh" content="0; url=http://example.com/index" />

答案 3 :(得分:0)

使用Redirect 301 website.com/ website.com/home/

重定向301 / website.com/home /