推薦(免費):IIS
#1、啟動iis伺服器,開啟IIS伺服器
開啟IIS伺服器,點選網站,右鍵點選「新增網站」
2、建立網站
點選「新增網站」後,進入頁面填寫網站相關內容,如:網站名稱、實體路徑(網站所在資料夾),點選「確定」建立成功
3、PHP設定
#點選建立好的網站,點擊“處理程序映射”,點擊右側的“新增映射模組”,在彈出層中輸入對應的參數,點擊確認
設定預設文檔
點擊“預設文檔”,滑鼠右鍵“新增”按鈕,新增預設文檔,輸入index.php,點擊“確定”新增
#4、安裝urlrewrite
5、使用URL重寫
點擊“ URL重寫”,點擊右側的“導入規則”,選擇要導入的規則文件,點擊應用即可
#應用程式規則後,網站所在根目錄會產生一個web.config文件,我這個用的是thinkphp的.htaccess檔導入的規則
檔案內容:
<?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> <handlers> <add name="php-cgi" path="*.php" verb="*" modules="FastCgiModule" scriptProcessor="D:\phpStudy\php56n\php-cgi.exe" resourceType="File" /> </handlers> <defaultDocument> <files> <add value="index.php" /> </files> </defaultDocument> </system.webServer> </configuration>
以上是看看在IIS上部署PHP網站的方法的詳細內容。更多資訊請關注PHP中文網其他相關文章!