masuurikas
Forum Replies Created
-
Forum: Plugins
In reply to: [WordPress MU Domain Mapping] I need someones help with Domain MappingSorry, I didn’t quite get it. If I want to map the domain http://www.keystoneadvisers.lv so that it will use the site http://www.keystoneadvisers.ee/lv. In this case:
1) I create a Site http://www.keystoneadvisers.lv, with Siteurl http://www.keystoneadvisers.ee/lv and Home http://www.keystoneadvisers.ee/lv
2) I create a Domain under Settings ‘keystoneadvisers.lv’ using the Site ID I createdIs that correct?
Forum: Plugins
In reply to: [WordPress MU Domain Mapping] Redirection loop on one site in MS installHi there. I have the problem with redirection I think. I would like to map domain so that if user goes to domain http://www.keystoneadvisers.lv (Latvian site) then he will see the site http://www.keystoneadvisers.ee/lv, but without user being redirected to this url, address bar should stay http://www.keystoneadvisers.lv. Okay I get it, here’s what I did.
1) I created a site in WordPress under Sites as http://www.keystoneadvisers.lv
2) Set the Siteurl as http://www.keystoneadvisers.ee/lv
3) Set the Home as http://www.keystoneadvisers.ee/lv
4) And mapped the domain keystoneadvisers.lv under Settings/Domains with the site ID and all.But still, when I go to http://www.keystoneadvisers.lv then I’m being redirected to http://www.keystoneadvisers.ee/lv. I think I have set the Site incorrectly? Maybe Site should be something else as well as Siteurl and Home?
Forum: Plugins
In reply to: [WordPress MU Domain Mapping] Can't access subsite adminHi there. I may have the same problem and wanted to ask you a question. I would like to map domain so that if user goes to domain http://www.keystoneadvisers.lv (Latvian site) then he will see the site http://www.keystoneadvisers.ee/lv, but without user being redirected to this url, address bar should stay http://www.keystoneadvisers.lv.
1) I created a site in WordPress under Sites as http://www.keystoneadvisers.lv
2) Set the Siteurl as http://www.keystoneadvisers.ee/lv
3) Set the Home as http://www.keystoneadvisers.ee/lv
4) And mapped the domain keystoneadvisers.lv under Settings/Domains with the site ID and all.But still, when I go to http://www.keystoneadvisers.lv then I’m being redirected to http://www.keystoneadvisers.ee/lv. I think I have set the Site incorrectly?
This is what I’ve been working on so far, but I’m not sure how to make changes in this sample. I figure that instead of folder_1/$1 I should put the URL where the domain is pointed?
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /# —————————————
# BEGIN Domain to folder mapping# pointing domain_1.com to folder_1
ReWriteCond %{HTTP_HOST} domain_1.com
ReWriteCond %{REQUEST_URI} !folder_1/
ReWriteRule ^(.*)$ folder_1/$1 [L]# pointing domain_2.com to folder_2
ReWriteCond %{HTTP_HOST} domain_2.com
ReWriteCond %{REQUEST_URI} !folder_2/
ReWriteRule ^(.*)$ folder_2/$1 [L]# END Domain to folder mapping
# —————————————# —————————————
# BEGIN WordPressRewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]# END WordPress
# —————————————# —————————————
# BEGIN htaccess pretection<Files .htaccess>
order allow,deny
deny from all
</Files># END htaccess pretection
# —————————————</IfModule>