Win主机如何设置WordPress网站伪静态?

每到春天,红得如火的木棉花,粉得如霞的芍药花,白得如玉的月季花竞相开放。它们有的花蕾满枝,有的含苞初绽,有的昂首怒放。一阵沁人心肺的花香引来了许许多多的小蜜蜂,嗡嗡嗡地边歌边舞。

Win+IIS 环境的 WordPress 网站,可以选择 Rewite 规则来实现伪静态。具体方法如下:

1、咨询空间商,服务器是否已开启 Rewrite 规则的支持。

2、新增 httpd.ini 文件,写入以下代码,并拷贝至网站根目录。

  1. [ISAPI_Rewrite]
  2. #3600=1hour
  3. CacheClockRate3600
  4. RepeatLimit32
  5. #Protecthttpd.iniandhttpd.parse.errorsfiles
  6. #fromaccessingthroughHTTP
  7. #wordpressweijingtai
  8. #Fortag
  9. RewriteRule/tag/(.*)/page/(\d+)$/index\.php\?tag=$1&paged=$2
  10. RewriteRule/tag/(.+)$/index\.php\?tag=$1
  11. #Forcategory
  12. RewriteRule/category/(.*)/page/(\d+)$/index\.php\?category_name=$1&paged=$2
  13. RewriteRule/category/(.*)/index\.php\?category_name=$1
  14. #Forsitemapxml
  15. RewriteRule/sitemap.xml/sitemap.xml[L]
  16. RewriteRule/favicon.ico/favicon.ico[L]
  17. #Forfile-basedwordpresscontent(i.e.theme),admin,etc.
  18. RewriteRule/wp-(.*)/wp-$1[L]
  19. #Fornormalwordpresscontent,viaindex.php
  20. RewriteRule^/$/index.php[L]
  21. RewriteRule/(.*)/index.php/$1[L]
  22. #Forrobots.txt
  23. RewriteRule/robots.txt/robots.txt[L]

3、到 WordPress 后台修改固定链接为 %post_id%.html 即可,当然也可以是其他的。

内容整理自:张戈博客 - https://zhang.ge/824.html

本文Win主机如何设置WordPress网站伪静态?到此结束。每条路都很难走,可是一旦选择了,就必须要走下去。小编再次感谢大家对我们的支持!

您可能有感兴趣的文章
WordPress站点Gravatar头像前后台不显示的如何解决办法

WordPress做公司官网好吗?会不会显得档次很低?

WordPress主题需要支持https吗?WordPress站点如何如何实现https?

WordPress站点的页面/标签/分类URL地址如何添加.html?

WordPress站点更换了域名后数据库应该如何操作替换新旧域名?