Laravel本地路由有效,但其他主机托管后无法正常工作

时间:2019-01-28 06:41:36

标签: laravel hosting

我已经将laravel应用程序托管在在线服务器(子域)上,并且只有本地路由有效。这可能是什么问题?

有效:

http//:test.mydomin.com

不起作用

http//:test.mydomin.com/test

1 个答案:

答案 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