I went through all the answered threads on rewrite rule problem. Tried the suggestions, But I still don't know what I am doing wrong.
I want to make a 301 redirect of our old URLs to the new ones. Example:
old url : http://www.xyz.com/abc/topics.html
new url : http://www.xyz.com/index.php#first
I am trying following rule in .htaccess:
RewriteEngine on
RewriteRule ^\/abc\/(.+)$ http://www.xyz.com/index.php#first [L,R=301]
Any advice is highly appreciated