User Tools

Site Tools


Sidebar

js#vista.png msort nsort

apache2:redirect_to_subdirectory

Redirect all visitors to a subdirectory

If you just migrated your entire site to a new platform with a new design it is a LOT easier to change everything over if you just redirect all traffic to the new subdirectory containing your new presence. Try this out for redirecting all visitors to a new wordpress presence:

<IfModule mod_rewrite.c> 
        RewriteEngine On

        RewriteCond %{REQUEST_URI} !^/?admin/ [OR] 
        RewriteCond %{REQUEST_URI} !^/?wordpress/
        RewriteRule ^/?$ /wordpress/ [L]

</IfModule>
apache2/redirect_to_subdirectory.txt · Last modified: 2020/02/24 11:16 (external edit)