sanjay
sanjay

Reputation: 1

I want to change my url

i can change my url in simple form. how can i use rewrite rule in htaccess

my url is http://test.com/wishdetails?wishid=czoyOiIzNiI7&title=my_weekend_story

i want this http://test.com/wishdetails/my_weekend_story

so please help me. how can i change please do reply fast.

Thanks....................

Upvotes: 0

Views: 93

Answers (2)

haha
haha

Reputation: 1532

RewriteEngine On
RewriteRule ^wishdetails/([^/]*)$ /wishdetails?wishid=czoyOiIzNiI7&title=$1 [L]

Upvotes: 1

Michiel Pater
Michiel Pater

Reputation: 23033

You could achieve that using this code:

RewriteEngine On

RewriteRule ^wishdetails/my_weekend_story$ wishdetails?wishid=czoyOiIzNiI7&title=my_weekend_story


Or if my_weekend_story is variable, you could use this code:

RewriteEngine On

RewriteRule ^wishdetails/(\w+)$ wishdetails?wishid=czoyOiIzNiI7&title=$1


Please do note that you will need to have enabled mod_rewrite if you are using Apache.

Upvotes: 2

Related Questions