Since my web hosting company does not accept URL in non-English alphabet, I want to use "Rewrite URL" to correct it.
For example,
When, in IE/Firefox, I input "http://www.whatajoke.com/tags/好笑" in the URL of IE/Firefox, it will jump/redirect to "http://www.whatajoke.com/index.php" (the front page).
I wrote the following in .htaccess :
RewriteEngine On
RewriteBase
RewriteRule http://www.whatajoke.com/tags/好笑 http://www.whatajoke.com/index.php
But it does not work. How should I write on the .htaccess?
Thank you very much!