我在我的网络项目中使用 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>
我有两个项目。其中一个有效,但另一个无效。它可能有什么问题?