MyBB Community Forums

Full Version: Redirect my Domain to /index.php
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I want my website to directly redirect to /index.php
(2014-11-01, 12:05 PM)devrock09 Wrote: [ -> ]I want my website to directly redirect to /index.php

On your .htaccess file

RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_URI} ^$
RewriteCond %{HTTP_HOST} ^yourdomain.com$
RewriteRule ^$ http://yourdomain.com/index.php [L,R=301]
ty but now its not need..