I had moved my website to one step back. So before that the link was www.example.com/abc/test.php
, but now the link is www.example.com/test.php
.
I want to remove the abc
folder name from the links, if any user visit the links containing the abc
folder I want to remove abc
folder from it.
I have tried
Options +FollowSymLinks -MultiViews
RewriteEngine On
RewriteBase /
RewriteRule ^abc/(.*)$ /$1 [L,R=301]