1

我想删除我的子类别 ID 并使用 rewriteurl 重定向到新的 url。我有很多这样的网址

www.abc.com/category/(subcategoryid)-subcategory/(articleid)-article.html

例子;

www.abc.com/category/12-subcategoryA/1054-article.html
www.abc.com/category/23-subcategoryB/1072-another-article.html

对比

www.abc.com/category/subcategoryA/1054-article.html
www.abc.com/category/subcategoryB/1072-another-article.html

你能帮我吗。问候

4

1 回答 1

0

启用mod_rewrite.htaccess通过httpd.conf然后将此代码放入您的 DOCUMENT_ROOT/.htaccess文件中:

Options +FollowSymLinks -MultiViews
RewriteEngine On
RewriteBase /

RewriteRule ^(category)/[0-9]+-([^/]+/[^.]+\.html)$ /$1/$2 [L,NC,R=302]
于 2013-10-12T14:55:22.497 回答