当前位置:首页 > CMS教程 > WordPress > 列表

WordPress解决伪静态问题和百度地图冲突问题

发布:smiling 来源: PHP粉丝网  添加日期:2014-10-18 10:19:20 浏览: 评论:0 

解决wordpress伪原创的问题:

1、wordpress后台设置,如下:

自定义结构:http://www.phpfensi.com/%post_id%.html

2、在网站根目录建立一个文件httpd.ini,代码如下:

  1. [ISAPI_Rewrite] 
  2.  
  3. # 3600 = 1 hour 
  4.  
  5. CacheClockRate 3600 
  6.  
  7. RepeatLimit 32 
  8.  
  9. # Protect httpd.ini and httpd.parse.errors files 
  10.  
  11. from accessing through HTTP 
  12.  
  13. # Rules to ensure that normal content gets through 
  14.  
  15. RewriteRule /sitemap.html /sitemap.html [L] 
  16. RewriteRule /sitemap_baidu.xml /sitemap_baidu.xml [L] 
  17. RewriteRule /sitemap.xml /sitemap.xml [L] 
  18.  
  19. RewriteRule /favicon.ico /favicon.ico [L] 
  20.  
  21. For file-based wordpress content (i.e. theme), admin, etc. 
  22.  
  23. RewriteRule /wp-(.*) /wp-$1 [L] 
  24.  
  25. For normal wordpress content, via index.php 
  26.  
  27. RewriteRule ^/$ /index.php [L] 
  28. --phpfensi.com 
  29. RewriteRule /(.*) /index.php/$1 [L] 

这个代码上面已经加了两段,是解决百度地图无法显示的问题,直接复制就OK.

Tags: WordPress伪静态 wp百度地图

分享到: