Example
if(isset($_SERVER['HTTP_X_REWRITE_URL'])) // IIS
else if(isset($_SERVER['ORIG_PATH_INFO'])) // IIS 5.0 CGI
//The above two lines of code are copied from Yii.
//For reference only
http://www.bkjia.com/PHPjc/727591.htmlwww.bkjia.comtruehttp: //www.bkjia.com/PHPjc/727591.htmlTechArticleExample if(isset($_SERVER['HTTP_X_REWRITE_URL'])) // IIS else if(isset($_SERVER ['ORIG_PATH_INFO'])) // IIS 5.0 CGI // The above two lines of code are in yii, copied as they are. //Only for reference...