Apache: Why on IE .htaccess rewrites non Latin character URLs to urlencode? How to solve it? -
apache: why on ie
.htaccess rewrites non latin character urls urlencode
? how solve it?
domain.com//контакты rewrites domain.com/%d0%ba%d0%be%d0%bd%d1%82%d0%b0%d0%ba%d1%82%d1%8b
rewriteengine on # rewrite multiple slashes single slash after domain rewritecond %{the_request} ^[a-z]+\s//+(.*)\shttp/[0-9.]+$ [or] rewritecond %{the_request} ^[a-z]+\s(.*/)/+\shttp/[0-9.]+$ rewriterule .* http://%{http_host}/%1 [r=301,ne,l]
seems there still no solution ie , depends of browser address-bar encoding. chrome 12 shows utf-8 url domain.com/контакты, on ctr+c, ctr+p unicode url http://domain.com/%d0%ba%d0%be%d0%bd%d1%82%d0%b0%d0%ba%d1%82%d1%8b
Comments
Post a Comment