0

我在本地主机上遇到了 htaccess 问题。

我有一个名为“ localhost/test ”的子文件夹

因为我只想对子文件夹进行 URL 重写。这意味着,我希望 /localhost/test/something 是 url_rewrite 到 /localhost/test/index.php?url=something

我希望这是可能的。

谢谢。

4

1 回答 1

1

将以下指令添加到子目录 /test 中的.htaccess

RewriteEngine on
RewriteBase /test/

RewriteCond  !index\.php 
RewriteRule ^(.+)$ index.php?url=$1 [L,QSA,NC]
于 2013-07-04T14:29:56.020 回答