谢谢阅读。首先,我在根目录中有一个 .htaccess ,其中包含以下语句:
# Mod Rewrite
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteRule ^$ /root/ [L]
RewriteRule (.*) /root/$1 [L]
</IfModule>
在根文件夹中我得到了这个文件:
# Mod Rewrite
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /root/index.php/$1 [PT,L]
</IfModule>
此外,在文件夹/root
中,我有三个文件夹css
:js
和images
.
我的应用程序设计为与我的 MVC 框架分离(有点像 CodeGgniter)。所以这是树:
- application
- my application files are there
- root
- css
- js
- images
- grecko
- my mvc framework files are there
像这样,我可以在不触及应用程序文件夹下运行的整个网站的情况下更新我的框架。
无论如何,我现在想做的就是将我上面说的三个文件夹(css
,js
和images
)移动到里面/application/assets/
。但由于所有内容都被重定向到/root/
,我需要一个允许将这样的请求http://www.domain.tld/css/blabla.css
映射到/application/assets/css/blabla.css
等的规则。
我确实尝试过,但没有成功。
谢谢。