htaccess 301 Redirect
Here's an easy way to simply redirect an entire folder to a new URL.
- Open your .htaccess File to edit
- Make sure you have turned your rewrite engine on.
RewriteEngine On #This needs to appear above the RewriteRule
- Upload your .htaccess file to the root on your server
RewriteRule ^oldurl/(.*)$ /new-url/ [R=301,NC,L]
A completed version should be similar to this:
RewriteEngine On
RewriteRule ^oldurl/(.*)$ /new-url/ [R=301,NC,L]