PDA

View Full Version : Forum link issue


dorukum123
04-24-2019, 02:08 PM
Hey Guys,

Just installed vBulletin, when I try to visit my https://www.domainname.com it gives the error message;

"Forbidden
You don't have permission to access / on this server.
Additionally, a 403 Forbidden error was encountered while trying to use an ErrorDocument to handle the request."

however I can reach my forum with https://www.domainname.com/forum

How can I redirect the main domain name to my forum as well?

--------------- Added 1556123033 at 1556123033 ---------------

https://vborg.vbsupport.ru/external/2019/04/5.png

This is how my FTP looks. When I move the content of forum folder directly to public_html then It comes up with the domain name but then I can't access anything. admin panel etc.

snakes1100
04-24-2019, 06:27 PM
RewriteEngine on
RewriteBase /
RewriteCond %{HTTP_HOST} domain.com [NC]
RewriteRule ^(.*)$ http://www.domain.com/forum/index.php [R=301,NC]


Add it to htaccess in the public_html folder.