mod_rewrite {QUERY_STRING}

HOPEFLOATS

New Member
I'm sure that's been asked zillions times but i can't get it to work,i'm trying to rewrite a url with querystring, my url is for example:\[code\]http://example.com/articles/index.php?keyword=book\[/code\]and i want to be accessible from\[code\]http://example.com/articles/keyword/book/\[/code\]I google it and i didn't have any luck, am i on the right track? i got this:\[code\]RewriteCond %{QUERY_STRING} ^keyword=(.*)$ [NC]RewriteRule ^/articles/index.php$ /articles/keyword/$1 [NC,L,R=301]\[/code\]UPDATEthis is working fine\[code\]RewriteEngine OnOptions +FollowSymLinksRewriteBase /RewriteRule ^.*/(\w+)\b$ /articles/index.php?keyword=$1\[/code\]
 
Back
Top