我想在php http://www.domain.com/door?door=french-doors中通过.htaccess重写URL到http://www.domain.com/door/french-doors [关闭]

please help me rewrite URL by .htaccess

 http://www.domain.com/door?door=casement-doors 

to

 http://www.domain.com/door/casement-doors.

Try this in your htaccess :

RewriteEngine on
RewriteCond %{QUERY_STRING} ^door=([^&]+) [NC] 
RewriteRule ^door /door/%1? [NC,L,R]