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.
我希望有人能帮忙。我正在寻找这样的网址的重定向规则... www.site.com/chevy/234-article-name www.site.com/ford/98-article-name www.site.com/kia/5-文章名
我需要删除“#-”部分,其中 # 是文章 ID。因此,在任何给定的类别中,每篇文章的文章名称前都有它的 ID。我最近更改了 url 结构,需要重定向数百个 url。是的,这是 Joomla 的事情。谢谢你的帮助。
您可以添加重写规则来处理该作业:
RewriteEngine On RewriteRule ^(.+?)/[\d]*-(.*)$ /$1/$2 [R=301,L]