我在root中创建了两个名为" oldwebsite"和" newwebsite"。
假设域名为www.example.com
如果有人转到www.example.com
,则必须转到根文件夹的索引,
否则,如果有人前往www.example.com/newwebsite
,则必须转到文件夹newwebsite
,
其他所有人都必须去www.example.com/oldwebsite
请使用htaccess或php告诉我如何从root重定向。
旧网站www.example.com
如果在Google展示中显示www.example.com/forum1
新网站www.folder1.example.com
答案 0 :(得分:0)
另一种方法是在根目录中创建index.php:
<?php
header("Location: /newwebsite/");
?>
答案 1 :(得分:0)
您可以在根文件夹本身的.htaccess文件中尝试此操作。
DirectoryIndex index.html
Redirect /newwebsite http://www.example.com/newwebsite/index.html
Redirect /oldwebsite http://www.example.com/oldwebsite/index.html
答案 2 :(得分:0)
试试这个 php有标题并重定向到页面navaigate。
<?php
header("Location: www.example.com/newwebsite/");
//or
Redirect('http://www.example.com/newwebsite');
?>