Laravel 6.0 IIS 添加虚拟目录 HTTP 错误 404.0 - 未找到

Laravel 6.0 IIS add virtual directory HTTP Error 404.0 - Not Found

我在 windows 10 主机 运行 Laravel 项目中使用 IIS,在主页上它工作正常,但我单击登录或注册它不工作?

这是我的设置(添加虚拟目录)

如果localhost/tms 它有效 但是 localhost/tms/登录 HTTP 错误 404

感谢您提供答案这是我的答案

在 public 目录中添加文件 web.config 并粘贴规则:

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
    <system.webServer>
        <rewrite>
        <rules>
            <rule name="Rule 1" stopProcessing="true">
            <match url="^(.*)/$" ignoreCase="false" />
            <action type="Redirect" redirectType="Permanent" url="/{R:1}" />
            </rule>
            <rule name="Rule 2" stopProcessing="true">
            <match url="^" ignoreCase="false" />
            <conditions>
                <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> 

致谢