我有这个别名配置:
Alias /test/ "D:/WWW/Test/"
<Directory "D:/WWW/Test/">
Order allow,deny
Allow from all
</Directory>
然后在D:/WWW/Test/
目录中,我将 .htaccess 放入以下配置:
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteRule ^([^.]*\.css)$ resources/$1 [L,NC]
</IfModule>
我只想将所有请求从 重定向localhost/test/css/*
到localhost/test/resources/css/*
。
但似乎.htaccess
被忽略了。即使我放了DirectoryIndex blablabla.php
,浏览器仍然显示 index.html。
如何解决这个问题?谢谢你。