standardize

BANNED
Jul 16, 2006
9
0
151
How do I setup a redirect in an htaccess file?

I want to point domain.com to domain.com/folder/link.php
 

jugo

Active Member
Nov 23, 2005
44
0
156
Try this:

Code:
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} ^domain\.com [NC]
RewriteRule ^(.*)$ http://www.domain.com/folder/index.php [L,R=301]