使用htaccess作为GET的子目录

时间:2015-04-04 06:41:25

标签: .htaccess

我想使用"假"子目录作为GET请求。对不起,我的措词不准确。

我目前在我的htaccess中有这个:

RewriteEngine on
RewriteRule ^pggr/(.*)$ index.php?p=$1

因此http://example.com/pggr/blah被视为http://example.com/?p=blah

但是我想从网址中删除pggr部分,因此它只是http://example.com/blah

1 个答案:

答案 0 :(得分:1)

您可以使用此规则:

RewriteEngine on

RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule (.+) index.php?p=$1 [L,QSA]