Mobile app version of vmapp.org
Login or Join
Welton855

: Why my sub-domain redirect returns a blank page? I have the domain http://dropbox.tombrito.com/ (on GoDaddy) forwarding with masking to www.dropbox.com/sh/k6ypvx4y4kf0gu6/rdjxQ1b1OL It was working fine

@Welton855

Posted in: #DomainForwarding #Godaddy

I have the domain dropbox.tombrito.com/ (on GoDaddy) forwarding with masking to dropbox.com/sh/k6ypvx4y4kf0gu6/rdjxQ1b1OL
It was working fine some time ago, but now the result is a blank page (although the Dropbox's favicon appears correctly in the browser's tab title).

The DNS manager shows me a single entry with the name "dropbox":

A dropbox 64.202.189.170


Any idea what's wrong?

Related: Why my domain redirect on Google Apps is returning 404?

10.02% popularity Vote Up Vote Down


Login to follow query

More posts by @Welton855

2 Comments

Sorted by latest first Latest Oldest Best

 

@Welton855

In Chrome's Inspector you get this error


Refused to display document because display forbidden by X-Frame-Options.


Two ways that should fix it:


IFRAMES - Custom Domain Dropbox
Add some PHP - Overcoming “Display forbidden by X-Frame-Options”

<?php header('X-Frame-Options: GOFORIT'); ?>

10% popularity Vote Up Vote Down


 

@Mendez628

Masked forwarding uses frames to display the site being redirected to. For dropbox that does not appear to work. You may want to use use a regular redirect instead.

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>

<head>
<title>dropbox.tombrito.com</title>

</head>
<frameset rows="100%,*" border="0">
<frame src="http://www.dropbox.com/sh/k6ypvx4y4kf0gu6/rdjxQ1b1OL" frameborder="0" />
<frame frameborder="0" noresize />
</frameset>

<!-- pageok -->
<!-- 06 -->
<!-- -->
</html>

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme