MyBB Community Forums

Full Version: When I go to my website it shows a diff page
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
When i go to
wemonetize.net it doesnt show my forum
I have to go to wemonetize.net/index.php for the forum to show
how do I fix this?
Put this code in your .htaccess file. It *should* work.

Options +FollowSymlinks

RewriteEngine On

RewriteRule ^$ /index.php [R=301,L]

RewriteCond %{SCRIPT_FILENAME} !-f
RewriteCond %{SCRIPT_FILENAME} !-d
RewriteRule . /index.php [QSA,L]
You have other files on the root of your MyBB installation, i.e. the documentation files. You should delete them (the files that are inside the "Documentation" folder in the MyBB package). To fix this specific issue though, just delete index.html. It's taking place as the index file. You can take care of the rest afterwards.
(2011-07-30, 11:15 PM)PJGIH Wrote: [ -> ]Put this code in your .htaccess file. It *should* work.

Options +FollowSymlinks

RewriteEngine On

RewriteRule ^$ /index.php [R=301,L]

RewriteCond %{SCRIPT_FILENAME} !-f
RewriteCond %{SCRIPT_FILENAME} !-d
RewriteRule . /index.php [QSA,L]

Where do I put it in between what code?
And do I change SCRIPT_FILENAME?
You don't need really need to do that. Just delete the index.html file you have in your MyBB installation...
(2011-07-30, 11:21 PM)faviouz Wrote: [ -> ]You don't need really need to do that. Just delete the index.html file you have in your MyBB installation...

Okay thanks
I see you're re-installing MyBB. For future reference, you only need to upload the files inside the "Upload" folder. The "Documentation" folder is just documentation which you can read if you want.