【第一步】56云 分享
新建文件 web.config 将下列代码复制进入,之后将文件拷贝到网站根目录
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<system.webserver>
<rewrite>
<rules>
<rule name="wordpress" patternsyntax="wildcard">
<match url="*"/>
<conditions>
<add input="{request_filename}" matchtype="isfile" negate="true"/>
<add input="{request_filename}" matchtype="isdirectory" negate="true"/>
</conditions>
<action type="rewrite" url="index.php"/>
</rule></rules>
</rewrite>
</system.webserver>
</configuration>
【第二步】
设置-》固定链接-》自定义结构,就可以自定义链接了
同样的,可以使用的参数是
可以使用的参数如下:
%year%:文章发表的年份,四位数字,如2016
%monthnum%:文章发表的月份,如03
%day%:文章发表的日期,如07
%hour%:文章发表的时间(小时),如10
%minute%:文章发表的时间(分钟),如48
%second%:文章发表的时间(秒),如28
%postname%:文章别名,在发表文章时可以设置。
%post_id%:文章的id,如86
%category%:分类别名,在添加分类时可以设置。
%tag%:标签的别名,在添加标签时可以设置。