Quote:
Originally Posted by jlew24asu
|
One thing I notice is that the cross-domain receiver URL is lacking the www that is specified in the application's callback url... Try to go back to your page but with (or without) the www in there and try again.
One thing I;ve done on my site is to add the following to the start of the htaccess file to 301 redirect any
www.domainname.com addresses to a domainname.com address instead.
Code:
RewriteEngine On
RewriteCond %{HTTP_HOST} ^www\.(.+)$ [NC]
RewriteRule ^(.*)$ http://%1/$1 [R=301,L]
This is for Apache with mod-rewrite enabled... And, no, sorry... I can't offer help on mod-rewrite if you can't figure it out.
Hope this helps!