url重写以隐藏查询字符串和php文件扩展名

时间:2014-08-06 07:33:55

标签: php apache .htaccess mod-rewrite

目前,我的页面是:

http://example.com/profile/customer.php?page=2

我想将网址重写为:

http://example.com/profile/customer

我现有的.htaccess文件是:

RewriteEngine On<br>
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^([^\.]+)$ $1.php [NC,L]

但是这段代码只隐藏文件扩展名而不是查询字符串。

0 个答案:

没有答案