Mobile app version of vmapp.org
Login or Join
Angela700

: Require domain alias to show in browser address bar Similar to question posted here (but not related to sub directories): .htaccess redirect of domain name alias to main domain but must show

@Angela700

Posted in: #Apache #Domains #Htaccess #Redirects #UrlRewriting

Similar to question posted here (but not related to sub directories):
.htaccess redirect of domain name alias to main domain but must show up as the alias domain

I am trying to direct traffic from an alias domain I have to my site that is on the same server, while also keeping the alias domain in the browser address bar.

This is my original htaccess content which correctly redirects the user, but xyz.com appears in the browser which I do not want.

rewritecond %{HTTP_HOST} ^(www.)?abc.com$ [NC]
rewriterule ^ xyz.com/?foo [R=301,QSA,L]


This is my attempt to not only bring abc.com visitors to xyz.com but also have abc.com appear in the browser. This doesn't even load the site. Any ideas on a fix?

rewritecond %{HTTP_HOST} ^(www.)?abc.com$
RewriteRule ^$ /index.html [L]

10.02% popularity Vote Up Vote Down


Login to follow query

More posts by @Angela700

2 Comments

Sorted by latest first Latest Oldest Best

 

@Deb1703797

I'm gonna assume each domain you're inquiring about are assigned separate document root folders on the same server.

I'll assume the document root for abc.com is in the /abc/public_html folder, and document root for xyz.com is in the /xyz/public_html folder.

Because you don't want xyz.com to show up and you want data from it, you have a couple of options.

If you use a linux server, you can turn all files (except .htaccess) in /abc/public_html folder as symbolic links pointing to the files in /xyz/public_html folder.

An easier way is to copy the files over so /abc/public_html has exactly the same contents as /xyz/public_html, but this option requires more disk space.

Update .htaccess so any requests to xyz.com are forwarded to abc.com so that there won't be duplicate content issues.

10% popularity Vote Up Vote Down


 

@Megan663

Any time you redirect you are telling the browser to change the URL as it appears to the user. There are three approaches you could take for this problem.


Serve both domains out of the same folder. This will mean that both domains have the same (duplicate) content. This solution works when both domains are served from the same server. You just need to set the virtual hosts to have the same DocumentRoot directory.
mod_proxy in reverse proxy mode allows your domain to re-serve the contents from another domain. When it gets a page request, it fetches it from the other domain and serves it again. This will work even when the two domains are served on different servers. It will also create duplicate content and is slower than serving the content directly.
Framed redirects. A framed redirect uses client side HTML frames to show the content of another domain.

<frameset rows="100%,*" border="0">
<frame src="http://othersite.example.com/" noresize frameborder="0">
</frameset>


This solution is not great because:


It doesn't work well for SEO -- Google still directs users to the other site
The URL doesn't change as users navigate the site. This make is hard for users to bookmark or share content.

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme