@font-face not working on mirrored site

177 Views Asked by At

I have a wordpress installed site at http://lifebridgecypress.org, and then I also have http://lifebridgecypress.com, which mirrors the .org site. As you can see, the .com site's @font-face rules are not working.

Does anyone know a way to get this to work?

3

There are 3 best solutions below

0
On BEST ANSWER

To redirect .com to .org, something along these lines in a .htaccess should do the trick. Requires mod_rewrite (which appears to be enabled on your sites).

RewriteEngine on
RewriteCond %{http_host} ^(www\.)?lifebridgecypress\.com$ [NC]
RewriteRule ^(.*)$ http://lifebridgecypress.org/$1 [R=301,NC,L]
0
On

Simply domain forward lifebridgecypress.com to lifebridgecypress.org at your domain registrar (looks like Dreamhost) so you only have one site to host and administer. And then you don't get down ranked by Google for duplicate content, either.

3
On

The two sites look identical to me in Safari5/Mac.