Hi,

Drupal installed at xyx.com. I have a views page at xyz.com/viewsPage. Views page displays title links of nodes. Title links displays the content of body field in views page.

I have a separate subdomain in another domain at subdomain.ddd.com. I would like to display only the views page at subdomain.ddd.com.

So the same views page will display at xyz.com/viewsPage and subdomain.ddd.com. When I click any link in subdomain.ddd.com, I would like to see the contents in subdomain.ddd.com.

Do I have to install drupal at subdomain.ddd.com (Can I do without installing drupal here)? How can subdomain.ddd.com point to xyz.com/viewsPage?

How should I proceed?

Comments

VM’s picture

I'd likely use two installs the main install generating a feed from views
the second site pulling the feed and generating the views

drupalfriend123’s picture

Both installs need separate databases? Can 2nd site point to main site db?
How the second site generates views from Main site? Using feed module?

If you could please provide a little details, it will be helpful.

VM’s picture

No.
Depends on information you've not provided.
you would be feeding the content from one site to the other. Export the views from site 1 import on site 2.
Yes.

elaboration can be found with google. I'd start with https://www.isovera.com/blog/syndicate-content-between-drupal-websites-h...

that said if all you care about is the redirect from one site to another you can investigate rewrite rules in .htaccess to forward the visitor from one domain to the other. I imagine you want something more complex than this though.

drupalfriend123’s picture

Thank you.