dll 扩展名.php
重启IIS php就可以用了。
【IIS FastCGI PHP】
复制代码 代码如下:
这个不用添加环境变量和修改PATH变量。
先安装FastCGI,安装
程序会自动添加
Web 服务扩展 - FastCGI Handler
c:\windows\system32\inetsrv\fcgiext.dll
并设置为允许。
修改c:\windows\system32\inetsrv\fcgiext.ini
[Types]
php=PHP
[PHP]
ExePath=D:\php\php-cgi.exe
InstanceMaxRequests=10000
EnvironmentVars=PHP_FCGI_MAX_REQUESTS:10000
添加应用
程序扩展名映射 可执行文件 c:\windows\system32\inetsrv\fcgiext.dll 扩展名.php
重启iis就行了。
【ISAPI_Rewrite 参考】
复制代码 代码如下:
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} ^03188.net [NC]
RewriteRule ^(.*)$ http://www.03188.net/$1 [L,R=301]
#### RewriteCond %{REQUEST_URI} ^[A-Z]{3,9}\ /index\.php\ HTTP /
# RewriteRule ^index\.(php|htm|html)$ http://www.03188.net/ [R=301,L]
RewriteRule ^([a-z]+)/(.*)/(.*)/(.*)\.htm$ index.php?action=$1&option=$2&extent=$3&info=$4 [L]
RewriteRule ^([a-z]+)/(.*)/(.*)\.htm$ index.php?action=$1&option=$2&extent=$3&info=$3 [L]
RewriteRule ^([a-z]+)/(.*)\.htm$ index.php?action=$1&option=$2 [L]
RewriteRule ^([a-z]+)\.htm$ index.php?action=$1 [L]
# RewriteRule ^(.*)\.
asp$ http://www.03188.net [L,R=301]
# 修改完整模式下被抓取的url使有效
# RewriteRule ^index\.php/([a-z]+)/(.*)/(.*)\.htm$ $1/$2/$3\.htm [L,R=301]
# RewriteRule ^index\.php/([a-z]+)/(.*)\.htm$ $1/$2\.htm [L,R=301]
# 修改论坛移动后出现No input file specified.
# RewriteRule ^bbs/(.*)$ http://bbs.03188.net/$1 [L,R=301]
# 修改人力资源hr
# RewriteRule ^hr/(.*)$ http://hr.03188.net/$1 [L,R=301]