I am doing website translation to russian language and I dont know what is better, more used for URL namespace - cyrillic or latin, for example xyz.com/команда or xyz.com/komanda. I found when I was googling more sites in latin. Is it more used in Russia?
相关问题
- UrlEncodeUnicode and browser navigation errors
- Improve converting string to readable urls
- Jasper: error opening input stream from url
- what's wrong in my URL validation Regex using
- Yii - Eliminate default controller ID for a module
相关文章
- C# HttpClient.SendAsync always returns 404 but URL
- Prevent $anchorScroll from modifying the url
- How does a browser handle cookie with no path and
- Base64URL decoding via JavaScript?
- Should I url encode a query string parameter that&
- MVC3 URL parameters - avoiding malicious attacks/s
- Call external URL from android and get response
- Regex to validate the index of a website vs. a spe
depends on server, usually browser converts not Latin url symbols to UTF-8 and sends, server may accept them or reject.
For example, all these 3 URL below are identical:
https://www.rabota.ru/vacancy/программист/
https://www.rabota.ru/vacancy/%D0%BF%D1%80%D0%BE%D0%B3%D1%80%D0%B0%D0%BC%D0%BC%D0%B8%D1%81%D1%82/
Cyrillic symbols UTF-8 encoding: %D0%BF - п %D1%80 - р %D0%BE - о
and so on