Support how to redirect main page

amir023123

Registered
Hi,

I want to ask one question please. How do I redirect xenforo index main page from forum list to the "blog node add on" i installed. i tried through admin panel buts it showing oops error and no page is loaded.

i checked hta access and its fine.

Basically I want the forum index php to go to index.php?threadhome/

i would appreicate your help
 

Marks-Man

Loyal Member
Hi

Thank you for reply.

I installed the add-on "[Xenbros] Home Blog"

and now that page works as a new page /index.php?threadhome/

so I want my main page website/index.php which is the forum main url to go to /index.php?threadhome/


but i tried all options from admin panel and nothign working. the logo etc redirects but when i got to website.com it takes to forum posts page not the blog addon i installed. please tell me
It can be done with .htaccess

you want to redirect index.php to index.php?threadhome

Code:
RewriteRule ^index.php/([^/]*)$ /index.php?threadhome [L]

I am not sure if you need to do other changes :)
Try it
 

Marks-Man

Loyal Member
yes i renamed it to .htacess and replaced from RewriteRule ^.*$ index.php [NC,L]

replaced it to
RewriteRule ^index.php/([^/]*)$ /index.php?threadhome [L]

even then not working. it still going to index.php
make sure to delete browser cache and cookies, PM me credentials I will take a look
 
Back
Top Bottom