我在我的IIS 8(Win 2012)服务器上运行了多个
PHP(Laravel)应用程序.这是我所有应用程序的web.config文件:
原文链接:https://www.f2er.com/php/132673.html<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>
但是在一个应用程序中,IIS会不时地出现一个问题:我的应用程序不起作用,因为URL错误.如果我重新启动Web服务器或更改web.config文件(添加一个空的空间或东西…),它再次工作.
我不知道…我的其他应用程序没有问题,它是相同的web.config代码.
所有用户(IIS_IUSR,Admins等)都具有完整的写入和读取权限.
我的应用程序在文件夹中组织,请参阅:
我用10.0.0.7/doku或10.0.0.7/lagerverwaltung命名.