XF 1.5 How to: Redirect from root to folder

Robru

Well-known member
How to: Redirect from root to folder:
Code:
https://www.caviaforum.nl/threads/
to:
https://www.caviaforum.nl/community/threads/

Thank you for your help :)
 
I'am confused about this:

Alternatively, if you move from the root to the /community directory, this would need to be added to an .htaccess file in the root:
Code:
RewriteEngine on
RewriteCond %{REQUEST_URI} ^/$
RewriteRule (.*) /community/ [R=301]

The root is my Wordpress installation
And Xenforo is in the directory /community

If I use the above rewrite rule
All traffic through put to the directory /community
 
Top Bottom