Hello,
I'm hoping someone can tell me if the Domain Access module would allow me to realize the following scenario:
Suppose I have a Drupal site (siteA.com), and a custom module that serves up some subset of the site's content via the url siteA.com/b, wrapped in a different theme.
Suppose I also have the domain siteB.com, whose DNS settings cause both sites to serve the same content.
Further suppose that I now want to make siteB.com serve the content currently located at siteA.com/b (and continue down the path, so that siteB.com/c serves the content located at siteA.com/b/c)
What would be the best way to achieve this? All of the content is already created, so I believe using a traditional Drupal multisite with table prefixes would be difficult, if not impossible. I do have a partially working setup using .htaccess and mod_rewrite, but this causes the browser to display siteA.com/b, instead of the preferred siteB.com.
TIA for any assistance.
Comments
You may be able to achieve
You may be able to achieve what you're looking for using URL rewriting. sitea.com would be the "real" site, but if someone visits siteb.com, the rewrite rule would prepend "a/" to the path and therefore show the same content as sitea.com/a
The Boise Drupal Guy!