目前,我的页面是:
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]
但是这段代码只隐藏文件扩展名而不是查询字符串。