Hi all,
Pls help me this prob
My language’s site is Vietnamese (include ô, â, ă, đ, ê… character)
now I want to leave it in URLs
ex: http://giadinh.cangiconay.com/nau_an_ngon/2007/ch%e1%ba%a3-sen-tom.html
change to: http://giadinh.cangiconay.com/nau_an_ngon/2007/cha-sen-tom.html
My .htaccess is:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
And I set permalink to: /%category%/%year%/%postname%.html
Tks!