htaccess - 如何重写对子目录文件的所有请求

时间:2013-11-04 14:29:21

标签: php apache .htaccess mod-rewrite url-rewriting

我需要一些帮助才能让我的.htaccess重写所有对子目录文件的请求。我搜索了stackoverflow,但所有examplex都只重写到子目录...

-app
-src
-vendors
-web
  -img
  -css
  -js
  -index.php

我认为这可以完成这项工作,但似乎不是:

RewriteEngine On
RewriteCond %{HTTP_HOST} ^(www\.)?domain\.com
RewriteCond %{REQUEST_URI} !^/web/
RewriteRule ^(.*)$ /web/index.php/$1 [L]

我做错了什么?

0 个答案:

没有答案