@cameron_walter
To redirect to another folder in the htdocs directory using .htaccess, you can use the RewriteRule directive. Here's how you can do it:
1 2 |
RewriteEngine On RewriteRule ^old-folder/(.*)$ /new-folder/$1 [L,R=301] |
Now, when someone tries to access the old folder, they will be automatically redirected to the new folder.
For example, if someone tries to access "http://example.com/old-folder/page.html", they will be redirected to "http://example.com/new-folder/page.html".