htaccess search and replace.
http://example.com/mp3/the-beatles-come-together
http://example.com/xuna/the-beatles-come-together
Code: Select all
# Arnlweb
# Replace 'mp3' with 'xuna' and 301 redirect
RewriteRule ^(.*)/mp3/(.*)$ $1/xuna/$2 [R=301,L]
RewriteRule ^mp3/(.*)$ xuna/$1 [R=301,L]
# Arnlweb