开发者

How to open web application if it is hosted in non-ascii computername

开发者 https://www.devze.com 2023-01-06 12:32 出处:网络
My computername is in non-ascii character like ÄÖßÜÄÖßÜ. I am opening the web application using the url http://loc开发者_开发技巧alhost/test/login.aspx.

My computername is in non-ascii character like ÄÖßÜÄÖßÜ. I am opening the web application using the url http://loc开发者_开发技巧alhost/test/login.aspx. It opens with that url. But when i try to open with the url like http://ÄÖßÜÄÖßÜ/processmanager/login.aspx, it is not opening the page. Any idea to resolve this?


You need to convert this non ascii domain name to IDNA punycode.

You can convert it here. http://mct.verisign-grs.com/
For example the name ÄÖßÜÄÖßÜ -> xn--ssss-koac7jd6ce

So if you edit your hosts file, on c:\windows\system32\drivers\etc you type

127.0.0.1 xn--ssss-koac7jd6ce
127.0.0.1 www.xn--ssss-koac7jd6ce
127.0.0.1 www.xn--ssss-koac7jd6ce.com

Reference: http://en.wikipedia.org/wiki/Internationalized_domain_name


You could edit your local hosts file in systemdrive\system32\drivers\etc and add this entry

127.0.0.1 uemlautnaeme.

allowing you to access your site using

http://uemlautnaeme/

instead of ümlautnäme.

0

精彩评论

暂无评论...
验证码 换一张
取 消