ERR_TOO_MANY_REDIRECTS包含两个.htaccess和一个文件夹/ p​​ublic

时间:2017-11-02 19:10:36

标签: .htaccess mod-rewrite

我的.htaccess有问题。我的重定向在我的机器(localhost)上正常工作,但是当我在我的服务器上传我的网站时,第一页有效,但在重定向多次之后,但是当我点击链接时,我有一条ERR_TOO_MANY_REDIRECTS消息。

我的文件夹的组织方式如下:

.htaccess (1)
    /public
    .htaccess (2)
    index.php

这是我的拳头htaccess(1)

RewriteEngine On
RewriteRule ^(.*) /public/$1 [L]

这是我的第二个htaccess(2)

Options -MultiViews
RewriteEngine On
Options -Indexes
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-l
RewriteRule ^(.+)$ index.php?url=$1 [QSA,L]

1 个答案:

答案 0 :(得分:0)

问题解决了,

问题不在于.htacess文件,而是使用函数file_exists,它关注我服务器上的大写但不在我的机器上。