IM Portal

Grandcruiser

New Member
Messages
155
Reaction score
0
Points
0
I just installed IM Portal for my phpBB2 forum and I wanted it to be my index but so far the real index is well...my index. Can anyone help me?
 

Derek

Community Support Force
Community Support
Messages
12,882
Reaction score
186
Points
63
Redirect your /forum directory to that link. or edit the .htacess.
 

halohalo

New Member
Messages
54
Reaction score
0
Points
0
htaccess uses redirect to look for any request for a specific page (or a non-specific location, though this can cause infinite loops) and if it finds that request, it forwards it to a new page you have specified:

Code:
Redirect /olddirectory/oldfile.html http://yoursite.com/newdirectory/newfile.html

Note that there are 3 parts to that, which should all be on one line : the Redirect command, the location of the file/directory you want redirected relative to the root of your site (/olddirectory/oldfile.html = yoursite.com/olddirectory/oldfile.html) and the full URL of the location you want that request sent to. Each of the 3 is separated by a single space, but all on one line. You can also redirect an entire directory by simple using Redirect /olddirectory http://yoursite.com/newdirectory/

so in your case, the redirect command would look something like this:

Code:
Redirect /path/to/index.html http://yourdomain.com/path/to/forum

Or something like that.
 

Derek

Community Support Force
Community Support
Messages
12,882
Reaction score
186
Points
63
Yeah well the cPanel option does it for you.
 
Top