当使用自定义(有点奇怪)的htaccess文件夹映射时,我有与codeignighter的问题.但是,它在技术上应该是有效的,但是它不是.有人能帮我吗?
情景1(Works Fine):
/ is the website root /.htaccess /api/ <this is the CodeIgniter Root,with index.PHP and default CI .htaccess>
/.htaccess:
RewriteEngine On RewriteRule ^api/(.*)$/api/$1 [L]
访问mydomain.com/api/admin/例如让我进入我的admin-controller / index操作,并加载视图.
$_REQUEST的index.PHP上的var_dump显示
array (size=1) 'admin/' => string '' (length=0)
情景2(不行):
/.htaccess /current/.htaccess /current/api/ <this is the CodeIgniter Root,with index.PHP and default CI .htaccess,this is the same folder/files/htaccess as above scenario>
/.htaccess:
RewriteEngine On RewriteRule ^(.*)$/current/$1 [L]
/current/.htaccess:
RewriteEngine On RewriteRule ^api/(.*)$/api/$1 [L]
访问mydomain.com/api/admin/例如让我进入Codeigniter 404页面/视图.
$_REQUEST的index.PHP上的var_dump显示(与场景1相同)
array (size=1) 'admin/' => string '' (length=0)
这里发生了什么?我知道htaccess重写是奇怪的,但就Codeigniter所看到的,路由是一样的(admin /).但他们的行为却有所不同.为什么?我尝试了我可以想到的一切,只要我看到,代码标识符看到正确的路径,直到请求对象去,但CI路由器不知道如何使用它不正确.
任何帮助赞赏,让我知道,如果你能想到任何我可以尝试帮助进一步调试.
注意:使用double htaccess的原因是,我可以根据时间/场景安排不同的CI实例(您可以使用重写条件来提供不同的文件夹而不是“当前”文件夹).目前我没有使用这个,所以在方案2中,root只有一个“current”文件夹.
从CodeIgniter的URI中删除index.PHP可能会很痛苦.上周我遇到了类似的情况:我的根目录在/ var / www / html和里面/ ci我的项目…所以在/ ci我有以下.htaccess:
RewriteEngine on RewriteCond $1 !^(index\.PHP) RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)$index.PHP/$1 [L,QSA]
<Directory /var/www/html/ci/> Options Indexes FollowSymLinks AllowOverride All Require all granted </Directory>
还要检查在application / config / config.PHP你有:
$config [‘uri_protocol’] =’REQUEST_URI’;
希望有帮助…