I’m running two sites on an MSM install… EE version 2.3.1.
The main domain is http://www.joshuafund.net/
The second site is http://epicenterconference.com/
I am using a .htaccess file to remove index.php…
RewriteEngine On
RewriteCond $1 !\.(gif|jpe?g|png)$ [NC]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /index.php/$1 [L]
RewriteCond %{HTTPS} !=on
RewriteRule "^(/donate)" "https://%{HTTP_HOST}$1" [R=301,L]The problem is that a link set to go to ‘www.joshuafund.net’ is being rewritten to ‘epicenterconference.com’.
The link is at the bottom of this post… http://epicenterconference.com/features/conference_news/2013_israel_tour_epicenter_announced
It is coded with the full URL… ‘http://www.joshuafund.net/features/israel_trips’ in a Wygwam field.
But when the page loads, the link is being rewritten as ‘http://epicenterconference.com/features/israel_trips’... which does not exist.
Any help as to how to fix that?
Thanks-