Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在 wordpress 中设置指向不同页面的永久链接?
像这样www.abc.com/blog.php?id=123
www.abc.com/blog.php?id=123
代替www.abc.com/?id=123
www.abc.com/?id=123
我找到了一种方法来做到这一点。我在第 161 行修改了 wordpress 包含目录中的 link_template.php
在函数中
home_url('?p=' . $post->ID);
我简单地说
home_url('blog.php?p=' . $post->ID);
这仅适用于永久链接设置中的默认永久链接选项。