21299 Posts in 5735 Topics by 2603 members
|
Page:
1
|
Go to End | |
| Author | Topic: | 1375 Views |
-
MicroSite

2 February 2010 at 3:31am
Hi,
Is it possible to have micro-site inside of SilverStripe website ?
I have my website on address http://www.domain.com and my microsite is here http://www.domain.com/micro (on webserver main website is directly in public_html and micro-site is in public_html/micro/ directory).The problem is that I can't start the other website becaue SilverStripe is blocking it. (tells me that page doesn't exist, while it's not a page in SS site but separate "thing")
My question is : is it possible to divide those two ? can I have SS website in main directory and the other one in some subfolder ?
-
Re: MicroSite

2 February 2010 at 11:26am
If you just want SS to ignore that director then you need to add a rule to your .htaccess file telling it to ignore requests to that folder. Put this above the RewriteRule in the .htaccess
RewriteCond %{REQUEST_URI} !^/folder-name/.*
-
Re: MicroSite

2 February 2010 at 11:40am Last edited: 2 February 2010 11:41am
I usually find it easier to create a new .htaccess file in the subfolder. Apache searches from the deepest folder back, so it'll use the first .htaccess it finds. This way you don't have to modify your silverstripe installation. For example, for a site that doesn't need rewrite, this is sufficient:
RewriteEngine Off
-
Re: MicroSite

2 February 2010 at 11:53am
Thanks,
I've already solved this problem the same way you guys gave me
Thanks again
| 1375 Views | ||
|
Page:
1
|
Go to Top |



