我想重定向URLhtaccess的正則表達式語法
http://www.domain.com/category/abc-xyz-zzz-2010-150857.html
to
http://www.domain.com/category/150857-abc-xyz-zzz-2010.html
但如果
http://www.domain.com/category/150857-abc-xyz-zzz-2010.html
not redirect
這是我的htaccess,但不起作用
RewriteRule ^([^.]+)/([A-Za-z]+)-([0-9]+).html$ $1/$3-$2.html [L,R=301]
普萊斯幫我解決它
我修正了
RewriteRule ^([^.]+)/([A-Za-z]*)-([^.]+)-([0-9]+).html$ $1/$4-$2-$3.html [L,R=301]