0

我在我的网络项目中使用 Laravel。我已经为未经身份验证的用户指定了这些路由。

Route::group(array("before" => "guest"), function() {
    // Show the login page for the user
    Route::get("/", array("as" => "homepage", function() {
        return View::make("unauthenticated.login");
    }));

    Route::get("/account/login", array("as" => "account-login-get", function() {
        return View::make("unauthenticated.login");
    }));
});

如果我访问/我的页面看起来是正确的。如果我尝试访问/account/login,我不会得到样式表。我认为这与重写有关。我在 Windows Server 2012 上使用 IIS,并且我在公共文件夹中有这种 web.config 文件。

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
    <system.webServer>
        <rewrite>
            <rules>
                <rule name="Move to index.php">
                    <match url=".*" />
                    <conditions>
                        <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
                        <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
                    </conditions>
                    <action type="Rewrite" url="index.php/{R:0}" logRewrittenUrl="true" />
                </rule>
            </rules>
        </rewrite>
    </system.webServer>
</configuration>

我有两个项目。其中一个有效,但另一个无效。它可能有什么问题?

4

1 回答 1

1

使用URL::asset()链接到样式表。因为/它链接到(例如)example.com/css/style.css 如果你在/account/login,它会在里面寻找样式表example.com/account/login/css/style.css

<link rel="stylesheet" href="{{ URL::asset('css/style.min.css') }}"/>在我的主刀片模板中使用。

希望能帮助到你

于 2014-01-25T20:11:20.897 回答