In the interest of being helpful...
For those that did the trick with multiple domains virtual folder theory which allowed for only one cmsms install
1* 2** (which by the way is prefect for iCMSUser you can look back for that post for when I worked the two together) there is an issue using the two described ways above... you would always be at
www.domin1.com when you wanted to go to
www.domin1.net... so building off the first work I did that kermit improved on, I push it much farther but have not had a chance to write on it... I fix that issue described by using this:
so with the thought that you main is domain1.com this is what you do....
Code: Select all
# force www IN URL
RewriteCond %{HTTP_HOST} !^www\. [NC]
RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L]
# END force www IN URL
so it works with the .htaccess that makes the virtual folder system work...
Code: Select all
#(mind you the below could be domain2.com aswell)
#first cmsms RW
RewriteCond %{REQUEST_FILENAME} !-f [NC]
RewriteCond %{REQUEST_FILENAME} !-d [NC]
RewriteRule ^(.+)$ index.php?page=$1 [QSA]
# second domain and page alias for its domain root
RewriteCond %{HTTP_HOST} domain1\.biz [NC]
RewriteCond %{REQUEST_URI} ^/$
RewriteRule .* /BIZ
# second domain and page alias for its domain root
RewriteCond %{HTTP_HOST} domain1\.info [NC]
RewriteCond %{REQUEST_URI} ^/$
RewriteRule .* /INFO
# second domain and page alias for its domain root
RewriteCond %{HTTP_HOST} domain1\.net [NC]
RewriteCond %{REQUEST_URI} ^/$
RewriteRule .* /NET
# second domain and page alias for its domain root
RewriteCond %{HTTP_HOST} domain1\.org [NC]
RewriteCond %{REQUEST_URI} ^/$
RewriteRule .* /ORG
....etc
When I get more time I'll write out the a-z I have woked out on multiple domains and sites under one CMSMS install in another post... lots more cool trick dealling with blogs, sitemap MS, additions on kermit's menu strategy, .htaccess stuff like this etc...
It may not be bullet proof but I hope this helps... Super sites are a real possblity with CMSMS.
have a great one
jeremyBass
1*http://forum.cmsmadesimple.org/index.php/topic,22564.0.html
2**http://forum.cmsmadesimple.org/index.php/topic,22890.0.html