XF 1.3 index.php Error

Connor Smith

Active member
So before I start I wasn't sure where to put this.
So when I load up my forum, and only use the route directory (www.example.com/community) I get this:
kanAoXC.png


But when I add the "index.php" to the url, it comes out fine:

2hVcv6M.png


Was wondering how to fix this to work both ways.
Thanks.
 
I can reproduce it.

When I visit http://vanticraft.org/secretsociety/ the base href is:

Code:
<base href="http://vanticraft.org/" />

That is incorrect and is the cause of your problem.

Here are some things to try:

1) Revert this template in your custom style:

Admin CP -> Appearance -> Templates -> PAGE_CONTAINER

2) Disable your addons in the Admin CP.

3) This could also be the result of multiple .htaccess files in play. In your /secretsociety directory, edit the .htaccess file and change this line:

Code:
#RewriteBase /xenforo

...to this:

Code:
RewriteBase /secretsociety

Also, please post the contents of the .htaccess file in your web root.
 
Top Bottom