-1

please help me rewrite URL by .htaccess

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

to

 http://www.domain.com/door/casement-doors.
Amit Verma
  • 40,709
  • 21
  • 93
  • 115
  • 2
    And your question is ? We're here to help with your issues, not to do your work. – Blackus Jun 03 '15 at 09:36
  • yes plz help me , rewrite URL by .htaccess in php http://www.domain.com/door?door=casement-doors to http://www.domain.com/door/casement-doors. – anshu pratap Jun 03 '15 at 09:56

1 Answers1

2

Try this in your htaccess :

RewriteEngine on
RewriteCond %{QUERY_STRING} ^door=([^&]+) [NC] 
RewriteRule ^door /door/%1? [NC,L,R]
Amit Verma
  • 40,709
  • 21
  • 93
  • 115