簡體   English   中英

如何使用 iis 管理器部署 laravel

[英]how to deploy laravel with iis manager

如何使用 IIS 管理器運行 laravel? 我已經按照谷歌上的教程進行了有關此操作,但是當我完成設置后我得到了類似的信息,請幫助我

結果

我的 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="public/index.php" />
            </rule>
        </rules>
        </rewrite>
    </system.webServer>
</configuration> 

解決我在添加並正確設置 Web 配置后忘記在 iis 管理器中添加 php 擴展名的問題,現在可以訪問了,感謝 stackoverflow 的朋友

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM