News新闻

业界新闻动态、技术前沿
Who are we?

您的位置:首页      乐道系统FAQ      iis 7下安装laravel 5.4环境的方法教程

iis 7下安装laravel 5.4环境的方法教程

发布日期:2017-06-14 00:00:00 82
【CLI】利用Curl下载文件实时进度条显示的实现

前言

本文主要给大家介绍了关于iis 7下安装laravel 5.4环境的相关内容,分享出来供大家参考学习,下面来一起看看详细的介绍:

  • laravel版本: Laravel5.4
  • IIS版本:IIS7

站点配置就不详细说啦,大家网上可以搜一坨很多的配置方法啦哈

安装方法

直接上图:


由于IIS没有像Apache.htaccess文件,创建一个Web.config文件在  D:\www\clw_app\public 下面

web.config配置如下:

<configuration>
 <system.webServer>
 <rewrite>
  <rules>
  <rule name="Imported Rule 1" stopProcessing="true">
   <match url="^(.*)/$" ignoreCase="false" />
   <conditions>
   <add input="{REQUEST_FILENAME}" matchType="IsDirectory" ignoreCase="false" negate="true" />
   </conditions>
   <action type="Redirect" redirectType="Permanent" url="/{R:1}" />
  </rule>
  <rule name="Imported 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>