lospicos
lospicos

Reputation: 301

Rewrite url with .htacess doesnt work

I have a link

http://www.mydomain.com/place/index.php?slug=antalya-hotels

and i want to write this like

http://www.mydomain.com/place/antalya-hotels.html

I have tried this

    RewriteEngine On
RewriteRule ^([^/]*)\.html$ /place/index.php?slug=$1 [L]

Bu didnt work. how we can do.

Upvotes: 1

Views: 29

Answers (1)

anubhava
anubhava

Reputation: 785256

You can use:

RewriteEngine On
RewriteRule ^place/([^.]+)\.html$ /place/index.php?slug=$1 [L,QSA,NC]

OR

RewriteRule ^([^/]+)/([^.]+)\.html$ /$1/index.php?slug=$2 [L,QSA,NC]

Upvotes: 1

Related Questions