一种是伪静态模式,这种模式,URL链接是系统默认网站地址.
另一种是自定义链接模式,这种模式URL链接,是自定义的根据你的录入系统链接不同而变化.在IIS6.0环境下如何实现。
注意:这里说的伪静态,自定义 是在WINDOW操作系统下进行,需要有服务器权限才能操作
RewriteEngine OnRewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^([a-zA-Z_]{1,})-([a-zA-Z_]{1,})-([a-zA-Z_]{1,})-([0-9a-zA-Z_]{1,})-([a-zA-Z_]+)-([0-9a-zA-Z_\=\{\}]{1,}).html$ index\.php?_m=$1&_a=$2&$3=$4&$5=$6
RewriteRule ^([a-zA-Z_]{1,})-([a-zA-Z_]{1,}).html$ index.php?_m=$1&_a=$2
RewriteRule ^([a-zA-Z_]{1,})-([a-zA-Z_]{1,})-([a-zA-Z_]{1,})-([a-zA-Z0-9]{1,}).html$ index.php?_m=$1&_a=$2&$3=$4
RewriteRule ^([a-zA-Z_]{1,})-([a-zA-Z_]{1,})-([a-zA-Z_]{1,})-([0-9]{1,})-([a-zA-Z_]{1,})-([0-9]{0,})-([a-zA-Z_]{1,})-([0-9a-zA-Z\=\{\}]{0,}).html$ index.php?_m=$1&_a=$2&$3=$4&$5=$6&$7=$8
把以上代码存储为.htaccess文件,然后上传到建站之星的安装目录,这里需要注意的是,第二行RewriteBase/ 如果是安装在根目录那么这样就没问题,但如果是在根目录下的子目录,比如bbs这个文件夹,那么这里就需要改为RewriteBase/bbs
欢迎分享,转载请注明来源:夏雨云
评论列表(0条)