网址重新打印从www.example.com到www.example.com/beta

时间:2013-06-24 15:50:14

标签: .htaccess url redirect

他的朋友,目前我的网站设置在我的根目录中的“beta”文件夹中,就像

一样

www.example.com/beta

现在,如果有任何用户输入以下网址

www.example.com

那么他应该自动重定向到第一个URL,任何想法?我知道这可以通过.htaccess完成,但我不确定:(请帮帮我。谢谢

3 个答案:

答案 0 :(得分:1)

尝试添加

Redirect 301 / http://www.example.com/beta

到根目录中的.htaccess文件(未经测试)

答案 1 :(得分:1)

你会在When Not To Use Rewrite的顶部找到一个很好的例子,这是一个每个人在编辑.htaccess文件的一个字符之前应该阅读的页面。

RewriteRule ^/(.*) http://other.example.com/$1

# is better expressed as..
Redirect / http://other.example.com/

或者,在您的情况下,

Redirect / /beta/

答案 2 :(得分:0)

实际上你可以做到非常简单(不需要.htaccess修改)。

从服务器主管(/)编辑index.html文件的标题。

<HEAD> ... </HEAD>部分中添加重定向代码,例如:

<meta http-equiv="refresh" content="0;URL=http://www.example.com/beta/somepage.html" />

请注意,这应该位于主dir /.// p>的index.html内

有关参考资料,请参阅:http://devmain.blogspot.co.uk/2013/06/html-auto-redirect-website-to-different.html

希望有所帮助。