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

An .htaccess question


Go to End


867 Views

Avatar
Nivanka

Community Member, 400 Posts

26 June 2009 at 12:06am

Hi,

This is some problem which I tried to solve, but was not able to do that.

Now what I need to do is that to give my website's registered users a custom sub domain, which is like if my website is mysite.com a member whose name is xx will be able to access the site after logging in by this URL xx.mysite.com

Any idea about how to make this?

Thanks

my .htaccess looks like this



### SILVERSTRIPE START ###
<IfModule mod_dir.c>
DirectorySlash Off
</IfModule>

RewriteEngine On



RewriteBase /

RewriteCond %{HTTP_HOST} !^www\.
RewriteCond %{HTTP_HOST} ^(.+)\.mysite\.com
RewriteRule ^(.*) http://www.mysite.com/%1 [R=301,L] 

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

RewriteCond %{REQUEST_URI} ^(.*)$
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule .* sapphire/main.php?url=%1&%{QUERY_STRING} [L]
### SILVERSTRIPE END ###