mod rewrite and .htaccess

thermal

Newbie
Joined
Sep 24, 2008
Messages
14
Reaction score
9
Looking for rewrite help in htaccess from this
/ipod/?product=itouch
to this
/ipod/itouch.html
is this possible
Thanks in advance for any help
 
RewriteEngine On
RewriteRule ^/ipod/([a-zA-Z]+).html$ /ipod/?product=$1 [L]
 
how about if i want to change :

/index.php?category=book#category2=lifestyle#status=promo

into :

/book/lifestyle/promo.html



Thanks :)
 
how about if i want to change :

/index.php?category=book#category2=lifestyle#status=promo

into :

/book/lifestyle/promo.html



Thanks :)

Try this:
Code:
RewriteEngine On
RewriteRule ^([a-zA-Z]+)/([a-zA-Z]+)/([a-zA-Z]+).html$ /index.php?category=$1&category2=$2&status=$3 [NC,L]

Hope that helps!
 
the beauty of php thanks for the help i had a similar question to this
 
Back
Top