WordPress固定链接设置的几种方法
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了WordPress固定链接设置的几种方法相关的知识,希望对你有一定的参考价值。
先做好伪静态,下面的设置才能生效
WordPress固定链接有六种方法供选择
登陆wp后台-设置-固定链接
wordpress提供了6种链接形式选择,所以说你可以选择的设置方式很多。比如用文章ID作为文章链接,文章ID是不会重复的,ID后添加.html伪静态:/%post_id%.html,选择自定义就行。
老魏觉得文章ID是比较简单的一种,当然你也能选择别的自定义方式,效果都是一样的,搜索引擎排名方面不用考虑太多,看的是你的内容不是文章链接。
参考技术AWordPress固定链接设置的几种方法:
1、•/%year%/%monthnum%/%day%/%postname%/
2、•/%year%/%monthnum%/%postname%/
3、•/%year%/%monthnum%/%day%/%postname%.html
4、•/%year%/%monthnum%/%postname%.html
5、•/%category%/%postname%.html
6、•/%post_id%.html
wordpress固定链接设置技巧:
1、不要让日期出现在固定链接里面。
2、不要让分类的链接出现在固定链接里面。
3、链接不要过深。
4、不要让中文字符出现在固定链接里面。
参考技术B 一是如果数字出现在固定链接里面,等于提醒搜索引擎,这是很旧的内容了,没必要再爬一遍了。另外一个原因是,假如你要修改文章的日期重新发布的话,链接地址就变了,也就是意味着你的反向链接,PR 等等都没有了。2、不要让分类的链接出现在固定链接里面 这一点是很多人都会忽略的地方。让分类出现在固定链接里面有两个缺陷:一是一篇文章如果选择了多个分类的话,则会出现多个链接地址,这很容易造成因为重复内容而被搜索引擎惩罚;二是有可能会造成关键词堆砌而被搜索引擎惩罚。3、链接不要过深 这一点经常看到。很多wordpress 用户的固定链接是年/月/日/分类名/文章名。这种过于深的固定链接对搜索引擎是非常不友好的。4、不要让中文字符出现在固定链接里面 虽然现在的搜索引擎已经能识别URL地址里面的中文字符,但无论是从美观上,还是从wordpress 优化的角度来看,都是非常差的。wordpress固定链接设置的一些参数:%year%:基于文章发布的年份,比如2010;%monthnum%:基于文章发布的月份,比如01;%day%:基于文章发布当日,比如06;%hour%:基于文章发布小时数,比如23;%minute%:基于文章发布分钟数,比如43;%second%:基于文章发布秒数,比如33;%postname%:基于文章的postname,其值为撰写时指定的缩略名,不指定缩略名时是文章标题;%post_id%:基于文章post_id,比如48;%category%:基于文章分类,子分类会处理成“分类/子分类”这种形式;%author%:基于文章作者名。 将上述参数进行组合,即可得到wordpress的固定链接形式。网上常见的几种设置方法: �6�1/%year%/%monthnum%/%day%/%postname%/ �6�1/%year%/%monthnum%/%postname%/ �6�1/%year%/%monthnum%/%day%/%postname%.html �6�1/%year%/%monthnum%/%postname%.html �6�1/%category%/%postname%.html �6�1/%post_id%.html总结:LosesToy认为,最好的 wordpress固定链接形式是:域名/文章 名(参数为/%postname%.html)。本回答被提问者采纳
[Android] Android 让UI控件固定于底部的几种方法
Android 让UI控件固定于底部的几种方法
1.采用linearlayout布局:
android:layout_height="0dp" <!-- 这里不能设置fill_parent -->
android:layout_weight="1" <!-- 这里设置layout_weight=1是最关键的,否则底部的LinearLayout无法到底部 -->
2. 采用relativelayout布局:
android:layout_alignParentBottom="true" <!-- 这里设置layout_alignParentBottom=true是最关键的,这个属性上级必须是RelativeLayout -->
=====================================
布局xml代码如下:
1)采用linearlayout布局
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<LinearLayout
android:id="@+id/content"
android:layout_width="match_parent"
android:layout_height="0dp" <!-- 这里不能设置fill_parent -->
android:layout_weight="1" <!-- 这里设置layout_weight=1是最关键的,否则底部的LinearLayout无法到底部 -->
android:orientation="vertical">
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="bottom"
android:orientation="vertical">
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="#ff0000"
android:focusable="false" />
</LinearLayout>
</LinearLayout>
2)采用relativelayout布局
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true" <!--上级必须是RelativeLayout-->
android:orientation="vertical">
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#ff0000"
android:focusable="false"
android:text="button"/>
</LinearLayout>
</RelativeLayout>
本博客地址: wukong1688
本文原文地址:https://www.cnblogs.com/wukong1688/p/10660549.html
转载请著名出处!谢谢~~
以上是关于WordPress固定链接设置的几种方法的主要内容,如果未能解决你的问题,请参考以下文章
[Android] Android 让UI控件固定于底部的几种方法