MyBB Community Forums

Full Version: htaccess help
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
Hi, I want http://codmedia.net/misc.php?page=showcase to show as my homepage, so when you visit http://codmedia.net, that page shows.
At the same time, I want /index.php to show the forum, obviously.
What do I need my htaccess code to be?
I Have this:
RewriteBase /
RewriteRule / misc.php?page=showcase
Delete what is said after rewrite rule, and place it on the line above.
RewriteBase / / misc.php?page=showcase
RewriteBase / misc.php?page=showcase

Both did nothing....
Rewritebase /
         RewriteRule misc.php?page=showcase/

Try this
Nope, that didn't change anything :3
<meta HTTP-EQUIV="REFRESH" content="0; url=http://codmedia.net/misc.php?page=showcase">

Add this to your index page, it will redirect a person upon landing.
Well I want people to still be able to access the /index.php
So if you land on codmedia.net, you see the showcase, if you land on index.php, you see the forums.
Try this in your htaccess:

DirectoryIndex misc.php?page=showcase
codmedia.net shows as a 403 with that code :3
Redirect 301 / misc.php?action=showcase
Pages: 1 2