i will like to change some folder but i dont like to lose all the links that i got is there any way to make this using .htaccess? some like this site.com/folder/blabla.html to be redirected to site.com/folder2/blabla.html
Yea, sure. You could use mod_rewrite. Put this in your .htaccess file Options +FollowSymLinks RewriteEngine On RewriteRule /folder/(\w+).html /folder2/$1.html [R=301,L] Code (markup): I haven't tried but it should work.