我在本地主机上遇到了htaccess问题。
我有一个名为“ localhost / test ”的子文件夹
因为我想在子文件夹上重写URL。这意味着,我希望/ localhost / test /是url_rewrite到/localhost/test/index.php?url=something
我希望有可能。
感谢。
答案 0 :(得分:1)
将以下指令添加到您的子目录/ test
中的.htaccessRewriteEngine on
RewriteBase /test/
RewriteCond !index\.php
RewriteRule ^(.+)$ index.php?url=$1 [L,QSA,NC]