Hi, I have a domain with a name version in puny code. I want all visitors to be redirected to the ascii name version (this is the one that should allways appear at the url bar of the browser). I guess I have to do that using the .htacces file, but how? Thank you. Regards, Javi
to redirect ALL files on your domain use this in your .htaccess file if you are on a unix web server: redirectMatch 301 ^(.*)$ http://www.domain.com redirectMatch permanent ^(.*)$ http://www.domain.com You can also use one of these in your .htaccess file: redirect 301 /index.html http://www.domain.com/index.html redirect permanent /index.html http://www.domain.com/index.html redirectpermanent /index.html http://www.domain.com/index.html This will redirect "index.html" to another domain using a 301-Moved permanently redirect.