GHengeveld |
|
---|---|
Shared login over multiple domains isn't possible, simply because the cookie set for one domain cannot be accessed through another domain (it's just how the web works). The best option, that is also much better in terms of SEO is to pick one domain to host the site, and redirect all others to that domain. You can put this in your .htaccess RewriteEngine On RewriteCond %{HTTP_HOST} !^www.streetlegalmods.com$ [NC] RewriteRule ^(.*)$ http://www.streetlegalmods.com/$1 [R=301]
As for the download links, you can add some conditions to catch those addresses so they keep working.
|
|
Dieser Beitrag wurde von Koradhil (am 1. August 2011, 20:10, vor 13 Jahre) bearbeitet |