首页 > 解决方案 > 我的网站无故转发到 /public_html

问题描述

前段时间我想将我的网站从 http:// 转发到 https:// 我用一些代码编辑了 .htaccess 文件,但它不起作用,我删除了 .htaccess。现在,没有 .htaccess 文件,它会自动重定向到 /public_html/ 文件夹。请帮忙,谢谢。

标签: .htaccesshttphttpsforwarding

解决方案


使用示例重写创建 .htaccess 文件并检查它是否有效

RewriteEngine On
RewriteBase /

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]

推荐阅读