网站地图    收藏   

主页 > 后端 > wordpress教程 >

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

来源:自学PHP网    时间:2014-11-28 23:42 作者: 阅读:

[导读] 解决wordpress伪原创的问题:1、wordpress后台设置,如下:自定义结构:http://www.phpfensi.com/%post_id%.html2、在网站根目录建立一个文件httpd.ini,代码如下:[ISAPI_Rewrite]#3600=1hourCacheClock......

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

解决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.

自学PHP网专注网站建设学习,PHP程序学习,平面设计学习,以及操作系统学习

京ICP备14009008号-1@版权所有www.zixuephp.com

网站声明:本站所有视频,教程都由网友上传,站长收集和分享给大家学习使用,如由牵扯版权问题请联系站长邮箱904561283@qq.com

添加评论