我已经将laravel应用程序托管在在线服务器(子域)上,并且只有本地路由有效。这可能是什么问题?
有效:
http//:test.mydomin.com
不起作用
http//:test.mydomin.com/test
答案 0 :(得分:0)
我发现使用它的Web服务器的托管服务器不是Apache,而是IIS,并且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