电子商务网站的HTACCESS重定向

时间:2012-04-04 21:54:40

标签: .htaccess redirect e-commerce

请你帮忙在htaccess文件中进行一次性重定向:

/something-something-something-something-c-2_19_70.html 

这种类型的文件没有数字-2 _:

/something-something-something-something-c-19_70.html

我确信有一个短代码可以应用于该类型的所有网址

非常感谢您提前

大卫

1 个答案:

答案 0 :(得分:0)

将此代码放在DOCUMENT_ROOT下的.htaccess中:

Options +FollowSymLinks -MultiViews
# Turn mod_rewrite on
RewriteEngine On
RewriteBase /

# redirect /something-something-something-something-c-2_19_70.html 
# to /something-something-something-something-c-19_70.html
RewriteRule ^(.*)2_(.*)$ $1$2 [L,NC,R]

# redirect /ethical-jewellery-silver-c-2_19.html to /silver-c-19.html
RewriteRule ^[^-]+-[^-]+-([^-]+-)([^-]+-)2_(.*)$ $1$2$3 [L,NC,R]