简体   繁体   English

重写Wordpress URL

[英]Rewriting Wordpress URLs

Recently I changed my wordpress permalinks in an effort to make them more readable and inline with what other blogs have done, which is just having the postname at the end, however I am having some issues with the .htaccess required for redirecting the old permalinks back to the new ones. 最近,我更改了wordpress永久链接,以使其更具可读性并与其他博客的内容保持内联,只是末尾加了邮政名称,但是我将重定向旧的永久链接所需的.htaccess遇到问题到新的。

The previous permalink structure I had in place is as follows: 我之前使用的永久链接结构如下:

http://domain.com/%category%/%post_id%-%postname%

Now I would like to change it to the following: 现在,我想将其更改为以下内容:

http://domain.com/%postname%

I have tried to do this with a URL Rewrite, however I am having no such luck unfortunately 我尝试使用URL重写来做到这一点,但是不幸的是我没有这种运气

RewriteRule ^/([^/]+)/(\d+)-([^/]+)/$ http://domain.com/$3 [L,R=301]

My knowledge of mod_rewrite is limited, very limited. 我对mod_rewrite的了解非常有限。 I was wondering if anyone could help me out as to why this is happening, and what I can do to resolve it. 我想知道是否有人可以帮助我解决这种情况的原因以及如何解决。 I essentially would like it to redirect to the correct permalink, with the "Moved Permanently 301" error code (so Google doesn't get upset with me) 我本质上希望它重定向到正确的永久链接,并带有“ Move Permanently 301”错误代码(因此Google不会对我感到不安)

Thank you for any assistance 感谢您的协助

The regex looks right, 正则表达式看起来不错,
however it might be to do with the trailing slash in the URL 但是可能与URL中的尾部斜杠有关

try: 尝试:

RewriteRule ^/([^/]+)/(\d+)-([^/]+)/?$ http://domain.com/$3 [L,R=301]

That should work with or without the trailing slash in the URL 无论网址中是否包含斜杠,都可以使用

I might be wrong, but doesn't it work automatically with Wordpress? 我可能是错的,但是它不能自动与Wordpress一起使用吗? At least with posts - if you change the slug, the old slug still works but redirects to the new one with 301. Isn't it the same with permalinks - maybe you shouldn't even change anything? 至少在帖子中-如果您更改了子弹,旧的子弹仍然可以使用,但是使用301重定向到新的子弹。永久链接不一样-也许您甚至都不应该更改任何内容?

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM