我有以下网址:
Http://localhost/mydomain.com/?a=ax&b=bx&c=cx
我想要的网址如下:
Http://localhost/mydomain.com/ax/bx/?c=cx
有什么想法吗?
答案 0 :(得分:0)
您可以在DOCUMENT_ROOT/.htaccess
文件中使用此规则:
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(\w+)/(\w+)/?$ /?a=$1&b=$2 [L,QSA]