WordPress解决伪静态问题和百度地图冲突问题
发布:smiling 来源: PHP粉丝网 添加日期:2014-10-18 10:19:20 浏览: 评论:0
解决wordpress伪原创的问题:
1、wordpress后台设置,如下:
自定义结构:http://www.phpfensi.com/%post_id%.html
2、在网站根目录建立一个文件httpd.ini,代码如下:
- [ISAPI_Rewrite]
- # 3600 = 1 hour
- CacheClockRate 3600
- RepeatLimit 32
- # Protect httpd.ini and httpd.parse.errors files
- # from accessing through HTTP
- # Rules to ensure that normal content gets through
- RewriteRule /sitemap.html /sitemap.html [L]
- RewriteRule /sitemap_baidu.xml /sitemap_baidu.xml [L]
- RewriteRule /sitemap.xml /sitemap.xml [L]
- RewriteRule /favicon.ico /favicon.ico [L]
- # For file-based wordpress content (i.e. theme), admin, etc.
- RewriteRule /wp-(.*) /wp-$1 [L]
- # For normal wordpress content, via index.php
- RewriteRule ^/$ /index.php [L]
- --phpfensi.com
- RewriteRule /(.*) /index.php/$1 [L]
这个代码上面已经加了两段,是解决百度地图无法显示的问题,直接复制就OK.
Tags: WordPress伪静态 wp百度地图
相关文章
- ·WDCP下nginx的wordpress伪静态规则(2014-10-17)
- ·在windows虚拟主机下WordPress伪静态后中文标签分类404错误问题(2014-10-17)
- ·WordPress设置固定链接、伪静态(2014-10-18)
- ·wordpress伪静态中文tag标签无法出错(2015-02-04)
- ·Nginx下WordPress伪静态规则设置(2015-02-26)
- ·WordPress 伪静态规则配置(IIS/Apache/Nginx)(2015-10-16)
- ·解决wordpress伪静态文件导致默认首页不生效(2015-10-16)
- ·nginx下wordpress子目录伪静态设置步骤详解(2015-10-16)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)