Codeigniter使用htaccess从路径中排除文件夹

时间:2014-03-21 09:31:07

标签: apache .htaccess mod-rewrite

我一起使用codeigniter和angular,Codeigniter主要用于后端管理我的restAPI和Angular作为前端。

文件夹结构

codeigniter
  -angular
  --app
  ---index.html
  -other codigniter folders
  -index.php
  -.htaccess

现在我想使用我的角应用程序,但codeigniter不应该解释为控制器

比我尝试使用htaccess排除使用以下内容的角文件夹但是没有工作

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

0 个答案:

没有答案