$conf, $runtime; function_exists('chdir') AND chdir(APP_PATH); $r = 'mysql' == $conf['cache']['type'] ? website_set('runtime', $runtime) : cache_set('runtime', $runtime); } function runtime_truncate() { global $conf; 'mysql' == $conf['cache']['type'] ? website_set('runtime', '') : cache_delete('runtime'); } register_shutdown_function('runtime_save'); ?>multisite - Redirecting non www to www ONLY for domain, subdomain without www|Programmer puzzle solving
最新消息:Welcome to the puzzle paradise for programmers! Here, a well-designed puzzle awaits you. From code logic puzzles to algorithmic challenges, each level is closely centered on the programmer's expertise and skills. Whether you're a novice programmer or an experienced tech guru, you'll find your own challenges on this site. In the process of solving puzzles, you can not only exercise your thinking skills, but also deepen your understanding and application of programming knowledge. Come to start this puzzle journey full of wisdom and challenges, with many programmers to compete with each other and show your programming wisdom! Translated with DeepL.com (free version)

multisite - Redirecting non www to www ONLY for domain, subdomain without www

matteradmin10PV0评论

How to set htaccess to such examples in a Wordpress Multisite:

  • domain - redirect to - www.domain
  • sudomain.domain - no redirect

I have a Error 310 (net::ERR_TOO_MANY_REDIRECTS) when my .htaccess file looks like this:

RewriteEngine On 
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{HTTP_HOST} !^www.
RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L]

# add a trailing slash to /wp-admin
RewriteRule ^wp-admin$ wp-admin/ [R=301,L]

RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^ - [L]
RewriteRule ^(wp-(content|admin|includes).*) wp/$1 [L]
RewriteRule ^(.*\.php)$ wp/$1 [L]
RewriteRule . index.php [L]

How to set htaccess to such examples in a Wordpress Multisite:

  • domain - redirect to - www.domain
  • sudomain.domain - no redirect

I have a Error 310 (net::ERR_TOO_MANY_REDIRECTS) when my .htaccess file looks like this:

RewriteEngine On 
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{HTTP_HOST} !^www.
RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L]

# add a trailing slash to /wp-admin
RewriteRule ^wp-admin$ wp-admin/ [R=301,L]

RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^ - [L]
RewriteRule ^(wp-(content|admin|includes).*) wp/$1 [L]
RewriteRule ^(.*\.php)$ wp/$1 [L]
RewriteRule . index.php [L]
Share Improve this question edited Mar 15, 2013 at 20:03 brasofilo 22.2k8 gold badges70 silver badges270 bronze badges asked Mar 15, 2013 at 19:42 Alex AungAlex Aung 1352 silver badges8 bronze badges
Add a comment  | 

3 Answers 3

Reset to default 2

Try:

RewriteEngine on
RewriteCond %{HTTP_HOST}   !^$
RewriteCond %{HTTP_HOST}   !^www\. [NC]
RewriteRule ^/(.*)         http://www.%{HTTP_HOST}/$1 [L,R=301]

I think you only need to ask explicit for %{HTTP_HOST} to be domain. All implicit conditions like »does %{HTTP_HOST} NOT start with www« will effect all subdomains too. So this should work for your case

RewriteEngine On 
RewriteBase /
RewriteCond %{HTTP_HOST} ^domain\$
RewriteRule ^(.*)$ http://www.domain/$1 [R=301,L]

RewriteRule ^index\.php$ - [L]

# add a trailing slash to /wp-admin
RewriteRule ^wp-admin$ wp-admin/ [R=301,L]

RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^ - [L]
RewriteRule ^(wp-(content|admin|includes).*) wp/$1 [L]
RewriteRule ^(.*\.php)$ wp/$1 [L]
RewriteRule . index.php [L]

Make sure, that the constant DOMAIN_CURRENT_SITE and the domain attribute (in network settings) of your root blog is set to www.domain. The NOBLOGREDIRECT constant might also be helpful for your purposes.

You don't need to add any codes in htaccess file. There is very easy solution to this. In the 'Network Admin -> Settings -> Domains' page, add both the www. and non-www. versions of the domain, select the box of 'primary' for if you want to mainly use for www. or non-www. and both will be assigned to the website.

Post a comment

comment list (0)

  1. No comments so far