I'm trying URL re-writing for the first time and I have the following URLS which need rewriting:
http://domain.com/hotels/index.php?ct=new delhi
I want this as
http://domain.com/hotels/hotels-in-new delhi
I'm trying URL re-writing for the first time and I have the following URLS which need rewriting:
http://domain.com/hotels/index.php?ct=new delhi
I want this as
http://domain.com/hotels/hotels-in-new delhi
RewriteEngine On
RewriteCond %{THE_REQUEST} ^GET\ /hotels/index\.php\?ct=(\S+) [NC]
RewriteRule ^ /hotels/hotels-in-%1? [R=301,L,B] # Use QSD flag is Apache 2.4 or later
RewriteRule ^hotels-in-(.*)$ index.php?ct=$1 [L]