Forum Moderators: phranque
1. I openned the htaccess in notepad and added:
Redirect [example.com...] [example.com...]
Redirect [example.com...] [example.com...]
and saved it as htaccess.txt in ASCI mode.
Then I uploaded it using cuteftp.
However when I went to: [example.com...]
my site did not redirect it but sent me to the same url as above.
Any suggestions?
First, redirect takes a URL-path (local path) on the left and a full URL on the right:
Redirect /aspbite/categories/index.asp?intCatID=163 [example.com...]
And secondly, Redirect is not aware of query-strings appended to the URL, and so can't test them.
However, you can do your query-string redirect with mod_rewrite, if it's available on your server.
Jim