XF 2.3 force homepage redirect to specific forum

disenioweb

Member
Licensed customer
Hello

is there any way to have jobs.mysite.com, always redirect to speficic forum, i see to setup home in xenforo redirect to jobs.mysite.com/forums/trabajos.2/

should i setup this in server side ?

when go to jobs.mysite.com appears jobs.mysite.com/forums/trabajos.2/

Thanks

Gabriel
 
use an htaccess redirect to do this. are you on apache?

Code:
RewriteCond %{HTTP_HOST} ^jobs\.mysite\.com$ [NC]
# if the request URI is empty send to forum 2
RewriteCond %{REQUEST_URI} ^/$
RewriteRule ^(.*)$  https://jobs.mysite.com/forums/trabajos.2/ [L,R=301]
 
That's certainly an option. Without knowing the rest of the site, that's not exactly what he asked for.
Correct but I suggested it as something that may better for SEO. Otherwise the site has no root URL. Granted redirects probably have minimal impact on SEO but it’s an important URL.
 
Back
Top Bottom