0

我为我的网站前端(codeIgniter)和后端(Rain Framework)使用了两个单独的框架,但问题是当我将代码上传到服务器上时,后端出现错误“此网页有重定向循环”(虽然前端工作正常),问题一定是由于.htaccess而发生的,我试图在谷歌上找到解决方案但对我没有任何帮助如果有人可以帮助我解决这个问题,我的.htaccess文件是

前端::

DirectoryIndex index.php
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond $1 !^(index\.php|adminpanel|web)
RewriteRule ^(.*)$ ./index.php/$1 [L,QSA]

和后端::

DirectoryIndex index.php
RewriteEngine on
RewriteBase /adminpanel/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond $1 !^(index\.php|adminpanel|web)
RewriteRule ^(.*)$ ./index.php/$1 [L,QSA]

我的管理文件夹是管理面板。

4

1 回答 1

0

你需要在前端重写这一行

  RewriteCond $1 !^(index\.php|web)

后端

  RewriteCond $1 !^(index\.php|adminpanel)
于 2013-12-26T12:00:13.610 回答