我正在使用 IIS 10.0 来托管我的 Laravel 网站。我已经在 public 文件夹中有包含 web.config 文件的 laravel 代码。但是在托管网站后,我收到 HTTP 错误 500.19 - 错误代码为 0x8007000d 的内部服务器错误。我在web.config中检查了XML格式的语法,似乎没问题。我还检查了我的公用文件夹的权限,我已授予所有用户组的所有访问权限。下面是我的 web.config 文件<configuration> <system.webServer> <rewrite> <rules> <rule name="Imported Rule 1" stopProcessing="true"> <match url="^(.*)/$" ignoreCase="false" /> <conditions> <add input="{REQUEST_FILENAME}" matchType="IsDirectory" ignoreCase="false" negate="true" /> </conditions> <action type="Redirect" redirectType="Permanent" url="/{R:1}" /> </rule> <rule name="Imported Rule 2" stopProcessing="true"> <match url="^" ignoreCase="false" /> <conditions> <add input="{REQUEST_FILENAME}" matchType="IsDirectory" ignoreCase="false" negate="true" /> <add input="{REQUEST_FILENAME}" matchType="IsFile" ignoreCase="false" negate="true" /> </conditions> <action type="Rewrite" url="index.php" /> </rule> </rules> </rewrite> </system.webServer></configuration>请帮我解决这个问题。先感谢您
1 回答
一只萌萌小番薯
TA贡献1795条经验 获得超7个赞
错误 0x8007000d 表示URL 重写模块(在 web.config 中引用)丢失或未安装正确版本。
只需通过网络平台安装程序安装 URL 重写模块。
我建议从 web.config 检查所有依赖项并安装它们。
- 1 回答
- 0 关注
- 134 浏览
添加回答
举报
0/150
提交
取消