Hi all,
I had to change the link structure on my site, and to maintain my SEO value I'm trying to setup some 301 rules based on htaccess.
My old setup was this:
http://www.domain.com/news/23/some-text-here
My new setup is this:
http://www.domain.com/read/some-text-here
RewriteCond ^(news)/([0-9]*)/(.*)$
RewriteRule ^(.*)$ http://www.domain.com/read/$3 [L,R=301]
The method above gives me server an internal server error. I hope someone can tell me what I'm doing wrong!
Thanks in advance