即时通讯将我的新脚本上传到托管,但网站无法正常工作主要错误ERR_too_many_redirects

时间:2018-09-07 10:45:44

标签: php web hosting htdocs

.htaccess代码是

RewriteEngine off

<IfModule mod_rewrite.c>
    RewriteEngine on
    RewriteRule ^$ public/ [L]
    RewriteRule ^(.*) public/$1 [L]
 </IfModule>

问题是什么?

1 个答案:

答案 0 :(得分:0)

我不确定这是否是您要执行的操作,但是请尝试以下操作:

RewriteEngine Off
<IfModule mod_rewrite.c>
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteEngine On
    RewriteBase /
    RewriteRule ^(.*)$ public/$1 [L,QSA]
</IfModule>