Home > Backend Development > PHP Tutorial > iis上实现多个php网站的不同伪静态

iis上实现多个php网站的不同伪静态

WBOY
Release: 2016-06-13 13:00:09
Original
851 people have browsed it

iis下实现多个php网站的不同伪静态
我的开发环境在iis下,现在我实现php的伪静态功能  我已在iis 上装了ISAPI_Rewrite3  也能实现一个网站的伪静态功能  但是,如果我的网站传到其它虚拟空间上,就需要写一个httpd.conf 在网站的根目录,但是iis怎么才能打到各个网站下的这个文件呢?从而实现多个网站的不同伪静态功能   
在apache下写个.hpaccess文件是可以实现的.
------解决方案--------------------
www.goithome.com 去IT家园
------解决方案--------------------
通过apache的virtualhost来实现一下,具体可以看手册

NameVirtualHost *:80



ServerName www.domain.tld
ServerAlias domain.tld *.domain.tld
DocumentRoot /www/domain





ServerName www.otherdomain.tld
DocumentRoot /www/otherdomain





------解决方案--------------------
ISAPI_Rewrite3免费版不支持多用户的,完整版是要$的,找下有没有破的吧,好像叫full版吧

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template