1

My website is configured to include cyrilic urls for SEO reasons, using some RewriteRules.

It wall works very well and the link look like this

http://site.com/категория/новина.html

now, the issue problem I have is that when apache logs the request in the access.log it saves it in this format:

http://site.com/%D0%94%D0%B0/%D0%BC%D1%D0.html

How can I configure apache to save to access.log the correct cyrilic url ?

duckyflip
  • 111
  • 4

1 Answers1

3

That's because that is the URL that is being sent. It may appear in Cyrillic in your browser's address bar, but when it gets sent to the server, it automatically gets URL encoded by your browser. There's already a post on SO about this same thing (see the accepted answer).

Andrew M.
  • 11,182
  • 2
  • 35
  • 29