您好,登錄后才能下訂單哦!
這篇文章將為大家詳細講解有關windows server 2019如何開啟iis服務器和tp5.1的配置運行,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。
然后一直點擊下一步,直到下圖所示:
選擇上如下圖所選:
然后下一步安裝上即可。
新建網站如下圖所示:
點擊基本設置,按要求填寫即可:
雙擊處理映射程序
彈出如下圖所示:
點擊添加模塊映射,填寫如下圖所示:
接下來:
雙擊默認文檔,添加index.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:\temp\php_errors.log post_max_size = 100M //最大POST大小,按需改 extension_dir = "e:\PHP\ext" //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:\web\temp\tmp"
開啟擴展:
extension=xxxxx //去掉前面的分號以啟用對應擴展
我打開了這些:curl、fileinfo、gd2、gettext、mbstring、exif、mysqli、openssl、pdo_mysql、xmlrpc
win+R 輸入 regedit
在HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\InetStp位置
修改注冊表
把MajorVersion的值改為9
下載:https://www.iis.net/downloads/microsoft/url-rewrite
并安裝即可。
在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
修改錯誤:.\extend\XBase\Column.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的配置運行”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。