Home >Backend Development >PHP Tutorial >linux下重写wordpress的url解决方案

linux下重写wordpress的url解决方案

WBOY
WBOYOriginal
2016-06-13 12:13:16944browse

linux下重写wordpress的url
wordpress目前的url是
http://xxxxxxx/?p=123
我想把这个url重写成
http://xxxxxxx/about/
并不想使用worpress自身的url格式选项
是不是应该用.htaccess重写呢,目前.htaccess文件是空的
请懂的同学帮忙解释下原理,写下具体该怎么做,多谢!
------解决思路----------------------
wordpress不是有内置方法get_the_ID()吗?
用这个就可以获取文章id了。
分页数可以用get_pages();来获取。
print_r(get_pages());

既然你都用wordpress了,当然用里面提供的方法,为什么要自己写$_GET。

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn