首页 > CMS > Wordpress > 正文

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

2024-09-07 00:51:23
字体:
来源:转载
供稿:网友

解决wordpress伪原创的问题:

1、wordpress后台设置,如下:

自定义结构:http://www.Vevb.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. --Vevb.com 
  29. RewriteRule /(.*) /index.php/$1 [L] 

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

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