首頁 > 軟體

windows server 2019開啟iis伺服器+tp5.1的完美設定執行流程

2022-03-02 19:01:23

一、新建IIS伺服器

然後一直點選下一步,直到下圖所示:

選擇上如下圖所選:

然後下一步安裝上即可。

二、IIS伺服器設定

新建網站如下圖所示:

點選基本設定,按要求填寫即可:

雙擊處理對映程式

彈出如下圖所示:

點選新增模組對映,填寫如下圖所示:

接下來:

雙擊預設檔案,新增index.php:

三、下載php,並設定

連結:https://windows.php.net/downloads/releases/php-7.3.17-nts-Win32-VC15-x64.zip,注意php-7.4對tp5.1支援有問題,所以最好用php7.3

把上面的複製一份,修改為php.ini

修改php.ini如下所示:

zlib.output_compression = On //啟用Gzip壓縮
max_execution_time = 30 //最大執行時間,按需改
memory_limit = 128M //記憶體大小限制
display_errors = Off //關閉報錯
error_log = e:tempphp_errors.log
post_max_size = 100M //最大POST大小,按需改
extension_dir = "e:PHPext" //ext資料夾位置
cgi.force_redirect = 0
cgi.fix_pathinfo=1
fastcgi.impersonate = 1
fastcgi.logging = 0
upload_tmp_dir = e:temp
upload_max_filesize = 100M //最大上傳大小,按需改
date.timezone = Asia/shanghai //時區
session.save_path = "e:temp"
session.auto_start = 0
sys_temp_dir = "e:webtemptmp"

開啟擴充套件:

extension=xxxxx //去掉前面的分號以啟用對應擴充套件

我開啟了這些:curl、fileinfo、gd2、gettext、mbstring、exif、mysqli、openssl、pdo_mysql、xmlrpc

四、IIS url rewrite錯誤

win+R 輸入 regedit
在HKEY_LOCAL_MACHINESOFTWAREMicrosoftInetStp位置

修改登入檔

把MajorVersion的值改為9

下載:https://www.iis.net/downloads/microsoft/url-rewrite

並安裝即可。

五、tp5的設定

在public資料夾下新增web.config,並填寫如下內容。

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
    <system.webServer>
        <rewrite>
            <rules>
                <rule name="已匯入的規則 1" stopProcessing="true">
                    <match url="^(.*)$" ignoreCase="false" />
                    <conditions logicalGrouping="MatchAll">
                        <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/{R:1}" appendQueryString="true" />
                </rule>
            </rules>
        </rewrite>
        <defaultDocument>
            <files>
                <add value="index.php" />
            </files>
        </defaultDocument>
    </system.webServer>
</configuration>

如果:tp5報錯:Non-string needles will be interpreted as strings in the future

修改錯誤:.extendXBaseColumn.php

$this->name = (strpos($name, 0x00) !== false ) ? substr($name, 0, strpos($name, 0x00)) : $name;改為:

$this->name = (strpos($name, chr(0x00)) !== false ) ? substr($name, 0, strpos($name, chr(0x00))) : $name;

整個流程走下來,tp5可以完美執行到伺服器上。

到此這篇關於windows server 2019開啟iis伺服器+tp5.1的設定的文章就介紹到這了,更多相關windows server 2019開啟iis內容請搜尋it145.com以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援it145.com!


IT145.com E-mail:sddin#qq.com