Status
Not open for further replies.
27 comments
Try adding this to your .htaccess file:

RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /forum.php?/$1 [L]
 
thank you mate,

I got solution through google search !!

Solution:-
Go to Index.php

Find:-
Code:
require('content.php');


/**
 * Use the forum as the default script:
 */

// require('forum.php');

Change to :-
Code:
//require('content.php');

require('forum.php');


thats all need to do & all fixed!
 
Status
Not open for further replies.
Back
Top