views:

218

answers:

1

Hi, I have a rewrite rule to get clean urls.. the only problem is, google shows some dynamic url and i dont want to serve dynamic urls.

What I want: if a user types in the dynamic url, he gets redirected to the clean url.. example:

    http://www.example.com/?index=bananas 
    (if someone types that in, he gets redirect to the url above)
    http://www.examplcom/bananas/

this is my htaccess:

Options +FollowSymLinks
RewriteEngine On
RewriteBase /
RewriteCond $1 !apple\+banana
RewriteRule ^(.*)\+apple\+banana/$ ?q=$1 [L]

thank you!!

A: 

Ok, retry :)

RewriteCond %{QUERY_STRING} ^index=([a-zA-Z0-9]+)$
RewriteRule ^/ /%1? [R=302,L]
WoLpH
no, doesnt work.. :(
elmaso
@Elmaso: try the updated version :)
WoLpH