Laravel + IIS6 下不能正常访问

在IIS6下的Laravel项目的添加了web.config

--------->配置如下
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="Imported Rule 1" stopProcessing="true">
<match url="^" ignoreCase="false" />
<conditions logicalGrouping="MatchAll">
<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>

-----------<

- 下面的超链接不能用了,包括路由!
已邀请:

安正超

赞同来自: motecshine

建议不要使用如此落后的架构,大家都用linux了,就别再用IIS了

要回复问题请先登录注册