我上传我的新脚本到主机但网站不工作主要错误ERR_too_many_redirects

问题描述 投票:0回答:1

.htaccess代码是

RewriteEngine off

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

问题是什么?

php web hosting htdocs
1个回答
0
投票

我不太确定这是你想要做的,但试试这个:

RewriteEngine Off
<IfModule mod_rewrite.c>
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteEngine On
    RewriteBase /
    RewriteRule ^(.*)$ public/$1 [L,QSA]
</IfModule>
© www.soinside.com 2019 - 2024. All rights reserved.