发生403错误时,将所有文件夹正确重定向到根站点

时间:2018-04-06 04:33:39

标签: .htaccess http cpanel http-error

我有我的网站:https://stackoverflow.com/和子域https://foo.stackoverflow.com/

我的文件夹public_html/foo包含子文件夹:

public_html/foo/folder_1
public_html/foo/folder_2
public_html/foo/folder_3

现在,我的public_html/.htaccess文件

Options -Indexes

ErrorDocument 403 /403.php

RewriteEngine on
RewriteRule ^403.php$ https://foo.stackoverflow.com/ [R=301]

上述规则在我访问https://stackoverflow.com/foo/folder_1时工作正常,当我访问https://foo.stackoverflow.com/页面未被重定向时,页面被重定向到https://foo.stackoverflow.com/folder_1 但是显示默认403错误页面。

我可以在public_html/.htaccess文件中更改哪些内容来解决此问题?

拜托,我想要一个简约的解决方案。

0 个答案:

没有答案