phpapache.htaccessurlhelper

I want to rewrite URL by .htaccess in php http://www.domain.com/door?door=french-doors to 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.

Solution

  • Try this in your htaccess :

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