pbootcms的伪静态规则官方其实都是写好的,文件就在根目录下的rewrite目录,其中Apache环境使用.htaccess,同时在规则中有两种情况,请注意;(虚拟主机如果用apache一般都是支持.htaccess文件的,如果不支持可咨询下空间商)pbootcms的伪静态规则官方其实都是写好的,文件就在根目录下的rewrite目录,其中Apache环境使用.htaccess,同时在规则中有两种情况,请注意;(虚拟主机如果用apache一般都是支持.htaccess文件的,如果不支持可咨询下空间商) ,具体伪静态规则如下:
,具体伪静态规则如下:
<IfModule mod_rewrite.c>
Options +FollowSymlinks
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php?p=$1 [QSA,PT,L]
</IfModule>
如果是windows系统服务器用的IIS7+环境使用web.config,具体代码如下:
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="reIndex" stopProcessing="true">
<match url="^(.*)$" ignoreCase="true" />
<conditions logicalGrouping="MatchAll">
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
</conditions>
<action type="Rewrite" url="index.php?p={R:1}" appendQueryString="true" />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>
Nginx请根据手册修改环境,将nginx.txt文件中的代码复制到伪静态中,代码如下:
#规则适合PbootCMS V2.0+版本
location / {
if (!-e $request_filename){
rewrite ^/(.*)$ /index.php?p=$1 last;
}
}
沃梦达教程
本文标题为:PbootCMS伪静态配置教程以及各web容器配置规则
猜你喜欢
- dedecms织梦列表页标题增加页码的方法 2022-07-22
- PbootCMS伪静态配置教程以及各web容器配置规则 2023-07-08
- 织梦dedecms点击数统计控制(刷新页面不新增点击数) 2022-07-20
- 织梦采集标题不完整的解决方法,修改标题长度 2022-07-14
- pbootcms去除ueditor编辑器图片自动添加的title和alt属性 2023-07-08
- 织梦dedecms最全的清除文档的sql语句 2022-06-24
- 怎么安装使用PbootCMS网站模板 2023-07-08
- pbootcms文章插入图片不固定宽高的办法 2023-07-08
- 织梦DedeCMS如何实现文章列表隔行换色变样式 2023-07-08
- PbootCMS网站标题描述等标签限制字数的办法 2023-07-08