typecho为何设置伪静态
问题1、 Typecho默认的地址带有index.php这个文件,很是不喜欢,需要开启伪静态,去掉链接中的index.php。而张兴博客就是基于typecho搭建的轻量级博客,下面以张旭博客为例介绍typecho如何在ISS环境下设置伪静态。
问题2、 在IIS主机搭建本博客不设置伪静态是不支持搜索中文的,当时尝试了好多方法,改数据库编码、换别的博客版本,差点就要放弃typecho了。终于,最后试着加了伪静态,然后重点来了;后台设置、永久链接、是否使用地址重写功能[em]启用(重中之重)[/em] 亲测开启伪静态就会解决以上两个问题!
typecho如何开启伪静态
基于IIS开启伪静态步骤:
新建web.config
、复制如下代码并写入到web.config
、上传到根目录,依次执行后台设置、永久链接、是否使用地址重写功能、启用、保存设置。
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="typecho" stopProcessing="true">
<match url="^(.*)$" ignoreCase="false" />
<conditions logicalGrouping="MatchAll">
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" ignoreCase="false" negate="true" />
<add input="{REQUEST_FILENAME}" matchType="IsFile" ignoreCase="false" negate="true" />
</conditions>
<action type="Rewrite" url="index.php/{R:1}" appendQueryString="true" />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>
执行完以上步骤,查看效果即可!