IIS服务器部署php项目

主机:腾讯云服务器,2核CPU,4G内存版本
操作系统:Windows Server 2012
服务器:IIS 8
php版本:5.6
使用了ThinkPHP框架。

原先服务器上已安装IIS,部署了一套asp.NET的网站,后期又添加了微信业务,用php+MySQL开发,为了便于管理,考虑把微信服务也部署在IIS上面。

在php官网下载5.6版本(php运行需要安装VC11),修改php配置文件,设置正确的extension_dir,开启短标签支持(short_open_tag),开启fastCGI支持(fastcgi.impersonate=1、cgi.forceredirect=0、cgi.fix_pathinfo=1),插件开启php_gd2、php_mbstring、php_mysql、php_mysqli、php_pdo_mysql,时区改为Asia/Shanghai。

找到ThinkPHP框架的配置文件,将URL模式设置为2(Rewrite模式)。

下载对应IIS版本的两个插件:PHP Manager和URL Rewrite,将PHP项目文件夹添加到IIS中,打开PHP Manager,设置php版本(PHP Setup - Register PHP version),选择PHP文件夹内php-cgi.exe。

开启IIS服务器的CGI和ISAPI功能(控制面板-添加Windows功能)。

网页部署之后会在项目文件夹内自动新建一个web配置文件,在配置文件的system.webServer节点添加Rewrite规则。

规则参考:

<rewrite>
     <rules>
      <rule name="cnUrl" stopProcessing="true">
       <match url="!^(index\.php|images|assets|robots\.txt)" />
       <action type="Rewrite" url="cnurl.php" />
      rule>
      <rule name="Default" patternSyntax="Wildcard">
       <match url="*" />
        <conditions>
         <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
         <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
        conditions>
       <action type="Rewrite" url="index.php" />
      rule>
     rules>
rewrite>

URL Rewrite下载地址:
http://www.iis.net/downloads/microsoft/url-rewrite#additionalDownloads
PHP Manager下载地址:http://phpmanager.codeplex.com/

你可能感兴趣的:(php,iis,windows,server)