用htaccess重写url以显示问号

时间:2015-02-16 11:09:29

标签: .htaccess url-rewriting

我有以下网址:

Http://localhost/mydomain.com/?a=ax&b=bx&c=cx

我想要的网址如下:

Http://localhost/mydomain.com/ax/bx/?c=cx

有什么想法吗?

1 个答案:

答案 0 :(得分:0)

您可以在DOCUMENT_ROOT/.htaccess文件中使用此规则:

RewriteEngine On

RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(\w+)/(\w+)/?$ /?a=$1&b=$2 [L,QSA]

参考文献: