i need to rewrite whenever someone goes to /dir/ it actually rewrites from /anotherdir/anotherdir/ this includes files so /dir/test.php -> /anotherdir/anotherdir/test.php etc i'm a complete noob when it comes to htaccess and i cant seem to get it right... thanks for your help!
In your dir folder put a .htaccess RewriteEngine On RewriteRule (.*) http://yoursite/anotherdir/anotherdir/$1 [R=302] Code (markup):