尝试将子文件夹重定向到主页

时间:2019-06-10 17:07:14

标签: .htaccess redirect

我有一个带有index.html文件的根文件夹,并且在我的根文件夹中也有一个文件夹。我想将此子文件夹重定向到我的index.html文件(主页)。看起来像这样。

    • 子文件夹
  • index.html

基本上,我想从此重定向我的网站: https://some.website.com/sub-folder/https://some.website.com/

请注意,它不是https://website.com,所以我不确定是否需要引入任何新规则,因为它是https://some.website.com

我尝试使用重定向规则在根文件夹和子文件夹中创建和.htaccess文件,但这些似乎无效。

这是在子文件夹中:

RewriteEngine on
RewriteRule .* https://some.website.com/ [R=301,L] 

这是在根文件夹中:

RewriteEngine on
Redirect 301 /sub-folder/ https://some.website.com/

重定向根本不起作用。

0 个答案:

没有答案