使用IIS 10

时间:2017-08-02 14:54:53

标签: laravel iis

我想在我们的IIS 10上部署laravel项目,在Windows Server 2016上运行。最简单且最安全的方法是什么?

1 个答案:

答案 0 :(得分:3)

我就是这样做的,我不确定这是正确的方法。

  • 安装网址重写模块(https://www.iis.net/downloads/microsoft/url-rewrite
  • 将repo放入某个文件夹E:/ sites / helloworld
  • 在IIS中添加一个名为" helloworld"的虚拟目录。指向E:/ sites / helloworld / public
  • 确保文件夹bootstrap / cache和存储空间已打开以供写入。
  • 别忘了制作环境文件。
  • 在你的web.php路径文件中输入:

    Route :: get(' /',function(){     返回视图(' welcome'); });

    Route :: get(' / also',function(){     返回视图(' welcome'); });

在公共目录中添加文件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> 

您现在应该能够访问两个URL,这意味着laravel路由按预期工作。如果你尝试另一条不存在的路线,你将得到一个laravel例子。