网站重定向到尾部正斜杠(Apache)

时间:2018-12-02 15:12:46

标签: apache .htaccess http-status-code-301

我的网站正在执行301重定向,当缺少尾部正斜杠时。

例如:

https//:example.com/folder

重定向到:

https://example.com/folder/

我正试图阻止它这样做。

我查看了.htaccess文件,但那里没有任何东西会引起这种重定向:

RewriteCond %{HTTPS} off [OR]
RewriteCond %{HTTP_HOST} ^www\. [NC]
RewriteCond %{HTTP_HOST} ^(?:www\.)?(.+)$ [NC]
RewriteRule ^ https://%1%{REQUEST_URI} [L,NE,R=301]

我还尝试从.htaccess中删除上述内容,并且这种情况仍在发生。

关于导致重定向的其他原因的任何想法吗?

使用CPanel / WHM在apache上运行的服务器。

0 个答案:

没有答案