I am having URL as blow:
http://www.example.com/joi-videos/user_videos/rakesh/index.php
I want to remove "user_videos" from url and URL should be like like below: http://www.example.com/rakesh/index.php
Please help me with this:
I am writing below code but its not working:
RewriteEngine On
RewriteRule ^user_videos/(.*)$ /$1 [L]