|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
不同版本的Linux命令数量不一样,这里笔者把它们中比较重要的和使用频率最多的命令。
在网站根目次下到场:
Web.Config:
- <?xmlversion="1.0"encoding=”UTF-8″?><configuration><system.webServer><rewrite><rules><rulename="cnUrl"stopProcessing="true"><matchurl="!^(index.php|images|assets|robots.txt)"/><actiontype="Rewrite"url="cnurl.php"/></rule><rulename="Default"patternSyntax="Wildcard"><matchurl="*"/><conditions><addinput="{REQUEST_FILENAME}"matchType="IsFile"negate="true"/><addinput="{REQUEST_FILENAME}"matchType="IsDirectory"negate="true"/></conditions><actiontype="Rewrite"url="index.php"/></rule></rules></rewrite></system.webServer></configuration>
复制代码 cnurl.php:- <?phpif(isset($_SERVER[HTTP_X_ORIGINAL_URL])){//IISMod-Rewrite$_SERVER[REQUEST_URI]=$_SERVER[HTTP_X_ORIGINAL_URL];}elseif(isset($_SERVER[HTTP_X_REWRITE_URL])){//IISIsapi_Rewrite$_SERVER[REQUEST_URI]=$_SERVER[HTTP_X_REWRITE_URL];}else{//UseORIG_PATH_INFOifthereisnoPATH_INFO(!isset($_SERVER[PATH_INFO])&&isset($_SERVER[ORIG_PATH_INFO]))&&($_SERVER[PATH_INFO]=$_SERVER[ORIG_PATH_INFO]);//SomeIIS+PHPconfigurationsputsthescript-nameinthepath-info(Noneedtoappendittwice)if(isset($_SERVER[PATH_INFO])){($_SERVER[PATH_INFO]==$_SERVER[SCRIPT_NAME])?($_SERVER[REQUEST_URI]=$_SERVER[PATH_INFO]):($_SERVER[REQUEST_URI]=$_SERVER[SCRIPT_NAME].$_SERVER[PATH_INFO]);}//Appendthequerystringifitexistsandisntnull(isset($_SERVER[QUERY_STRING])&&!empty($_SERVER[QUERY_STRING]))&&($_SERVER[REQUEST_URI].=?.$_SERVER[QUERY_STRING]);}require("index.php");
复制代码 撑持IIS情况下跑各类开源PHP项目,如:Wordpress、Emlog、Typecho等。
如果你只是想应付一下操作系统的课程,劝你最好别学,或者说不要指望能用的怎么样。 |
|