我有一个带有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/
重定向根本不起作用。