MyBB Community Forums

Full Version: .htaccess redirect from mydomain.com to mydomain.com/forum
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi, how to create a redirect with .htaccess from mydomain.com to mydomain.com/forum ?


Code of my .htaccess

RewriteEngine On
RewriteCond %{HTTP_HOST} ^unturned\.it
RewriteRule (.*) http://www.unturned.it/$1 [R=301,L]
Here is a code :


RewriteEngine On
RewriteCond %{HTTP_HOST} ^domain.com$ [OR]
RewriteCond %{HTTP_HOST} ^www.domain.com$
RewriteRule (.*)$ http://www.domain.com/forum$1 [R=301,L]

(2015-01-02, 12:03 PM)rajeevrrs55 Wrote: [ -> ]Here is a code :



RewriteEngine On
RewriteCond %{HTTP_HOST} ^domain.com$ [OR]
RewriteCond %{HTTP_HOST} ^www.domain.com$
RewriteRule (.*)$ http://www.domain.com/forum$1 [R=301,L]


You forgot to escape the dots also wouldn't that just inf redirect?
iirc as he wants a folder redirect but still keep files available,
RewriteEngine on
RewriteBase /
RewriteCond %{REQUEST_URI} !^/forum/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /forum/$1 [L]