i want the htaccess code which would allow just letters and numbers from all languages to be displayed properly.
the url stucture is:
http://example.com/word-{here is the first letter of the the keyword}/{here is the keyword it self}/
I am looking at
Rewriterule ^word-[a-z0-9]/[a-z0-9]+/ index.php?key=$1&keyword=$2 [L]
I want one where if the keyword is not english it still works.
Thank you.
Rewriterule ^word-[a-z0-9]/[a-z0-9]+/ index.php?key=$1&keyword=$2 [L] should be fine. but i would suggest using php for url rewriting.