我有以下结构
由/var/www
指出的 localhost
其中有一个名为mytestsite
的目录。
我的重写规则
RewriteCond %{DOCUMENT_ROOT}/controllers/$1\.php -f
RewriteRule ^(.*)\.html$ index.php?lang=en&module=$1 [L]
这只会起作用:
RewriteCond %{DOCUMENT_ROOT}/mytestsite/controllers/$1\.php -f
我尝试使用RewriteBase
,但这似乎不会改变%{DIRECTORY_ROOT}
有没有办法动态指向/获取当前的htaccess相对/绝对路径进行检查?试过很多变化。