首页 > CMS > PhpCMS > 正文

phpcms v9中给Rss伪静态配置方法

2024-09-10 07:16:12
字体:
来源:转载
供稿:网友

前面我已写过关于phpcms v9伪静态的文章如何实现phpcms v9_4X版本tag的伪静态? 这是需要分页的伪静态,接下来将再来一篇没有分页的Rss伪静态实现。

Rss页面的伪静态实现目标

设置前的URL:http://localhost/index.php?m=content&c=rss&siteid=1

设置后的URL:http://localhost/rss.html

实现方法:

一、开启rewrite模块

找到Apache 配置文件 httpd.conf

1、LoadModule rewrite_module modules/mod_rewrite.so

把这句的“#”注释掉。

2、AllowOverride none 改为 AllowOverride all

注意:每次改动配置文件httpd.conf后,别忘了重启apache服务器.

二、添加url路由规则

在根目录的.htaccess文件(没有的话自己创建)添加如下代码:

  1. <IfModule mod_rewrite.c> 
  2.    RewriteRule ^rss.html index.php?m=content&c=rss&siteid=1 
  3.    RewriteEngine on 
  4.    RewriteCond %{REQUEST_FILENAME} !-d 
  5.    RewriteCond %{REQUEST_FILENAME} !-f 
  6.    RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L] 
  7. </IfModule> //开源软件:Vevb.com 

小结:这是没有分页的phpcms v9伪静态设置,不用在后台的扩展那里添加url规则,相对相对于需要分页的伪静态,要简单得多,在如何实现phpcms v9_4X版本tag的伪静态?我发现有些网友问题很多,可能我日后会再来一篇phpcms v9伪静态的总结.

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表