国产精品成人VA在线观看,亚洲日韩在线中文字幕综合,亚洲AV电影天堂男人的天堂,久久人人爽人人爽人人av东京热

News新聞

業(yè)界新聞動(dòng)態(tài)、技術(shù)前沿
Who are we?

您的位置:首頁      樂道系統(tǒng)FAQ      iis 7下安裝laravel 5.4環(huán)境的方法教程

iis 7下安裝laravel 5.4環(huán)境的方法教程

標(biāo)簽: 發(fā)布日期:2017-06-14 00:00:00 256
【CLI】利用Curl下載文件實(shí)時(shí)進(jìn)度條顯示的實(shí)現(xiàn)

前言

本文主要給大家介紹了關(guān)于iis 7下安裝laravel 5.4環(huán)境的相關(guān)內(nèi)容,分享出來供大家參考學(xué)習(xí),下面來一起看看詳細(xì)的介紹:

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

站點(diǎn)配置就不詳細(xì)說啦,大家網(wǎng)上可以搜一坨很多的配置方法啦哈

安裝方法

直接上圖:


由于IIS沒有像Apache.htaccess文件,創(chuàng)建一個(gè)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>