Error redirecting parked domain - please help

Status
Not open for further replies.

gillapsfi

New Member
Messages
49
Reaction score
0
Points
0
here is the error:

Apache detected an error in the Rewrite config.
Syntax error on line 11 of .htaccess.4VNr3dHVnUvpddTbVKskYqCv01NOHxAZ:
RewriteCond: bad flag delimiters

here is the file
HTML:
RewriteEngine on
# -FrontPage-
DirectoryIndex  home.php index.html index.php
IndexIgnore .htaccess */.??* *~ *# */HEADER* */README* */_vti* 

<Limit GET POST>
order deny,allow
deny from all
allow from all
</Limit>
<Limit PUT DELETE>
order deny,allow
deny from all
</Limit>
AuthName gillincorporated.exofire.net
AuthUserFile /home/gillapsf/public_html/_vti_pvt/service.pwd
AuthGroupFile /home/gillapsf/public_html/_vti_pvt/service.grp
RewriteCond %{HTTP_HOST} ^gillincorporated.exofire.net$ [OR]
RewriteCond %{HTTP_HOST} ^www.gillincorporated.exofire.net$
Edit:
Problem solved

Here is the solution I found searching google for ".htaccess redirect multiple domains". http://www.webmasterworld.com/apache/3647574.htm
HTML:
RewriteEngine on
# -FrontPage-
DirectoryIndex  home.php index.html index.php
IndexIgnore .htaccess */.??* *~ *# */HEADER* */README* */_vti*

<Limit GET POST>
order deny,allow
deny from all
allow from all
</Limit>
<Limit PUT DELETE>
order deny,allow
deny from all
</Limit>
AuthName gillincorporated.exofire.net
AuthUserFile /home/gillapsf/public_html/_vti_pvt/service.pwd
AuthGroupFile /home/gillapsf/public_html/_vti_pvt/service.grp
RewriteCond %{HTTP_HOST} ^gillincorporated.exofire.net$ [OR]
RewriteCond %{HTTP_HOST} ^www.gillincorporated.exofire.net$
RewriteRule ^/?$ "http\:\/\/www\.gillincorporated\.org\" [R=301,L]

RewriteCond %{HTTP_HOST} ^agillengineeringresume.co.cc$ [OR]
RewriteCond %{HTTP_HOST} ^www.agillengineeringresume.co.cc$
RewriteRule ^/?$ "http\:\/\/www\.agillengineeringresume\.co\.cc\/resume\/" [L]
 
Last edited:
Status
Not open for further replies.
Top