前段时间,我想将我的网站从http://转发到https:// 我用一些代码编辑了.htaccess文件,但是它不起作用,因此我删除了.htaccess文件。 现在,没有.htaccess文件,它会自动重定向到/ public_html /文件夹。请帮助,谢谢。
答案 0 :(得分:0)
使用示例重写创建.htaccess文件,并检查其是否有效
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]