I want to change the URL from:
http://example.com/folder/name-file.php
To:
http://example.com/name-file.php
basically i want to hide url folder
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteRule ^folder(/.*|)$ $1 [L,NC]
</IfModule>
I have tried a lot but nothing is working for me.