.htaccess / Apache“重定向过多”-Zend Framework Project

时间:2018-11-02 09:02:58

标签: apache .htaccess mod-rewrite zend-framework

在使用Zend Framework 1的项目中,我的.htaccess文件的配置存在问题。我可以访问我的登录页面,但登录时遇到301错误“重定向过多”,尝试重定向我到某个页面。

这是我的.htaccess文件内容:

RewriteEngine On
RewriteCond %{REQUEST_FILENAME} -s [OR]
RewriteCond %{REQUEST_FILENAME} -l [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^.*$ - [NC,L]
RewriteRule ^.*$ index.php [NC,L]

这是我的带有重写规则的apache vhost conf的一部分:

RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^.*$ /index.php [NC,L]

您知道问题出在哪里吗?

感谢您的时间

[编辑]

我们是这个项目上的几个开发者,我是唯一拥有与其他人相同配置的问题的人。我不明白为什么

0 个答案:

没有答案