
1 in1024days 2018 年 1 月 5 日 有两种可能,代码里面写死了或者配置上的问题。 代码写死了的话,看看能不能用一些反编译工具把相关的值改了。工作量可能会比较大。 配置上的话,看一下这个: https://docs.microsoft.com/en-us/iis/configuration/system.webserver/security/ipsecurity/ |
2 qinxg 2018 年 1 月 5 日 这个和 razor 没关系,不行做个反代 |
3 hellommd 2018 年 1 月 5 日 1. 编辑 PorthosWebserver.exe.config 文件 在 <appSettings> 元素下加入 <add key="IsRemoteConnectionsAllowed" value="true" /> 2. 必须 “以管理员身份运行” PorthosWebserver.exe |
4 vjnjc 2018 年 1 月 5 日 另外一种可能是 localhost 被转成 ipv6 了,你试试::1 |
5 heyinglongsimon OP @hellommd 非常感谢 |