PhpCms模块管理:问吧伪静态设置_PHPCms教程

编辑Tag赚U币
教程Tag:暂无Tag,欢迎添加,赚取U币!
一、确定服务器已经支持URL重写

 

二、模块配置

 

位置:模块管理---问吧--模块配置


说明:

1、需要新增加规则的可直接点击新建URL规则;
2、修改已有规则需要到:系统设置--相关设置--URL规则管理--管理URL规则
找到属于问吧的模块--根据演示示例可以知道生成的格式是什么
附加:如何修改URL规则?

规则名称:htmlshow、show分别为内容页伪静态规则名称和动态地址名称
静态URL规则:问吧没生成静态html,所以均为

三、Rewrite 规则的编写

 

以 .htaccess 为例:将规则保存到ask/目录
1、问吧伪静态规则如下
当问吧没有绑定域名二级域名时:
  1. # 将 RewriteEngine 模式打开
  2. RewriteEngine On
  3. # 修改以下语句中的 / 为你的网站目录地址,如果程序放在二级目录中,如/phpcms 请将 / 修改为 /phpcms
  4. # 如果您在httpd.conf中已经设置了重写规则,请去掉下面的注释
  5. RewriteBase /ask
  6. # Rewrite Rules
  7. RewriteRule ^(.*)show-([0-9] )\.html$ $1/ask/show.php?id=$2
  8. RewriteRule ^(.*)list-([0-9] )-([a-z] )\.html$ $1/ask/list.php?catid=$2&action=$3
  9. RewriteRule ^(.*)list-([0-9] )-([a-z] )-([0-9])\.html$ $1/ask/list.php?catid=$2&action=$3&page=$4


当问吧绑定域名二级域名时:
  1. # 将 RewriteEngine 模式打开
  2. RewriteEngine On
  3. # 修改以下语句中的 / 为你的网站目录地址,如果程序放在二级目录中,如/phpcms 请将 / 修改为 /phpcms
  4. # 如果您在httpd.conf中已经设置了重写规则,请去掉下面的注释
  5. RewriteBase /
  6. # Rewrite Rules
  7. RewriteRule ^(.*)show-([0-9] )\.html$ $1/ask/show.php?id=$2
  8. RewriteRule ^(.*)list-([0-9] )-([a-z] )\.html$ $1/list.php?catid=$2&action=$3
  9. RewriteRule ^(.*)list-([0-9] )-([a-z] )-([0-9])\.html$ $1/list.php?catid=$2&action=$3&page=$4

查看更多 phpcms教程  phpcms模板

来源:模板无忧//所属分类:PHPCms教程/更新时间:2009-05-17
相关PHPCms教程