0

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?

Spencer B.
  • 233
  • 2
  • 7
  • 15

3 Answers3

1

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]
ceejayoz
  • 176,543
  • 40
  • 303
  • 368
0

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

ceejayoz
  • 176,543
  • 40
  • 303
  • 368
0

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.

markratledge
  • 17,322
  • 12
  • 60
  • 106