Gossamer Forum
Home : General : Internet Technologies :

Plzz I need help with .htaccess

Quote Reply
Plzz I need help with .htaccess
Hello, i have added this code

//Rewrite to www
Options +FollowSymLinks
RewriteEngine on
RewriteCond %{HTTP_HOST} ^xxx.eu[nc]
RewriteRule ^(.*)$ http://www.xxx.eu/$1 [r=301,nc]

but my website is not responding to anything again. how do i get .htaccess file to work
Quote Reply
Re: [shellybrit] Plzz I need help with .htaccess In reply to
Hi,

Totally the wrong place to post ;) I've moved it for you.

Code:
RewriteCond %{HTTP_HOST} ^xxx.eu[nc]

I would do as:

Code:
RewriteCond %{HTTP_HOST} ^xxx.eu$ [nc]

Not sure if thats your problem though (not really sure what you problem is... is it just getting into an infinate loop???)

Also, comments should be:

Code:
# Rewrite to www

not:

Code:
//Rewrite to www

Its possible that is whats causing your site to stop working ;)

Cheers

Andy (mod)
andy@ultranerds.co.uk
Want to give me something back for my help? Please see my Amazon Wish List
GLinks ULTRA Package | GLinks ULTRA Package PRO
Links SQL Plugins | Website Design and SEO | UltraNerds | ULTRAGLobals Plugin | Pre-Made Template Sets | FREE GLinks Plugins!
Quote Reply
Re: [Andy] Plzz I need help with .htaccess In reply to
Can you please write a normal .htaccess code for me ?
Quote Reply
Re: [shellybrit] Plzz I need help with .htaccess In reply to
I would just write it as:

Code:
Options +FollowSymLinks
RewriteEngine On
RewriteCond %{HTTP_HOST} ^xxx.eu$ [NC]
RewriteRule ^(.*)$ http://www.xxx.eu/$1 [r=301,NC]

Cheers

Andy (mod)
andy@ultranerds.co.uk
Want to give me something back for my help? Please see my Amazon Wish List
GLinks ULTRA Package | GLinks ULTRA Package PRO
Links SQL Plugins | Website Design and SEO | UltraNerds | ULTRAGLobals Plugin | Pre-Made Template Sets | FREE GLinks Plugins!
Quote Reply
Re: [Andy] Plzz I need help with .htaccess In reply to
BTW, please don't post duplicate posts. I've removed it. You will get a response here.

Cheers

Andy (mod)
andy@ultranerds.co.uk
Want to give me something back for my help? Please see my Amazon Wish List
GLinks ULTRA Package | GLinks ULTRA Package PRO
Links SQL Plugins | Website Design and SEO | UltraNerds | ULTRAGLobals Plugin | Pre-Made Template Sets | FREE GLinks Plugins!