标签: php .htaccess replace space hyphen
通过htaccess
网址是:
http://domain.com/sitename/New-York-Mills/New+York+Mills%252C+MN%252C+United+States/tamarind/New+york
答案 0 :(得分:0)
尝试:
RedirectMatch 301 ^/(.*)\%2[Cc](.*)$ /$1-$2
或者,如果您已经有重写规则,请坚持使用mod_rewrite:
RewriteRule ^(.*)\%2[Cc](.*)$ /$1-$2 [L,R=301]