2013-10-12 60 views
1

我想刪除我的子類別ID,並用rewriteurl重定向到新的URL。我有很多這樣的網址Rewriteurl類別ID

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 

你能不能幫我請。 問候

回答

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] 
+0

再次感謝您anubhava,它的工作。 –

+0

不客氣,很高興它爲你解決。 – anubhava