Anybody knows the code for .htaccess redirection?
And is it reliable?
I am thinking of making links like:
http://www.epoker.no/go?www.partypoker.com
or is it better and more reliable to make regular redirecting?
3 Answers
I’ve used it on plenty of my sites and it’s a great method.
Can be a bit of a pain to track clicks, although you can just watch the particular dir/file you’re redirecting from.
Can be a bit of a pain to track clicks, although you can just watch the particular dir/file you’re redirecting from.
http://httpd.apache.org/docs/1.3/mod/mod_alias.html
http://sam.brown.tc/article/108/htaccess-redirect
http://www.google.com/search?q=redirects+with+.htaccess
Hope it helps.
You can use this to redirect in .htaccess:
redirect 301 /casinolink/old.htm http://www.your.com/newlink.htm [/CODE]
A 301 redirect is more SEO friendly.[CODE]redirect 301 /casinolink/old.htm http://www.your.com/newlink.htm [/CODE]
A 301 redirect is more SEO friendly.
Please login or Register to submit your answer