联系官方销售客服
1835022288
028-61286886
在虚拟主机上测试出现这个呢
Internal Server Error
The server encountered an internal error or misconfiguration and was unable to complete your request.
Please contact the server administrator, root@localhost and inform them of the time the error occurred, and anything you might have done that may have caused the error.
More information about this error may be available in the server error log.
虚拟主机服务器错误500解决方法
空间的web.config文件是不是被删除了呢?
总之内部服务器错误就是配置有问题,正确配置是不会出现错误的~
备注:切记这个web下的web.conf默认是在这里的 不要改名字 不要删除
不然整个网站都会崩溃然而导致无法使用 访问报错等等:不小心删除的话可以创建一个web.config文件
Web.config代码如下
<?xml version="1.0"encoding="UTF-8"?>
<configuration>
<system.webServer>
<directoryBrowse enabled="false" />
<defaultDocument>
<files>
<clear />
<addvalue="Default.htm" />
<addvalue="Default.asp" />
<add value="index.htm"/>
<addvalue="index.html" />
<addvalue="iisstart.htm" />
<addvalue="default.aspx" />
</files>
</defaultDocument>
</system.webServer>
</configuration>2498258595