Skip to main content

This site requires you to update your browser. Your browsing experience maybe affected by not having the most up to date version.

We've moved the forum!

Please use forum.silverstripe.org for any new questions (announcement).
The forum archive will stick around, but will be read only.

You can also use our Slack channel or StackOverflow to ask for help.
Check out our community overview for more options to contribute.

General Questions /

General questions about getting started with SilverStripe that don't fit in any of the categories above.

Moderators: martimiz, Sean, Ed, biapar, Willr, Ingo, swaiba

.htaccess mess up


Go to End


936 Views

Avatar
abood

Community Member, 4 Posts

11 September 2009 at 11:05pm

im having a problem with my site as i tried to go live. i have at least 15 sites hosted on the same server, and im trying to make a silverstripe site in the main directory, what i did was put it in a subfolder and use the mod rewrite to get everything in order. Everything is working now except the canonicalization i guess. When i go to the site using http://sitename.com it works and when i use http://www.sitename.com gives me. The website server has not been able to respond to your request. Here is what i have in the .htaccess
<IfModule mod_rewrite.c>
RewriteEngine on

RewriteCond %{HTTP_HOST} ^(www.)?sitename.com$

RewriteCond %{REQUEST_URI} !^/mainsitefolder/
#RewriteCond %{REQUEST_URI} !(\.gif)|(\.jpg)|(\.png)|(\.css)|(\.js)|(.php)$

RewriteCond %{REQUEST_URI} ^(.*)$
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{HTTP_HOST} ^(www.)?sitename.com$
RewriteRule .* mainsitefolder/sapphire/main.php?url=%1&%{QUERY_STRING}

</IfModule>
### SILVERSTRIPE END ###

any help would be much appreciated