afamilyedu
Forum Replies Created
-
Forum: Networking WordPress
In reply to: Turning an existing subdomain into a network (multisite)I’m hopeful and have made the change. But I don’t see improvement on my end yet.
Forum: Networking WordPress
In reply to: Turning an existing subdomain into a network (multisite)Did that.. navigating to the dashboard for nebraska.afamilyedu.com from the admin panel takes me here:
http://www.mkspencers.com/wp-login.php?redirect_to=http%3A%2F%2Fnebraska.afamilyedu.com%2Fwp-admin%2F&reauth=1Forum: Networking WordPress
In reply to: Turning an existing subdomain into a network (multisite)Yes, the wildcard is there.
So you’re suggesting (after disabling plugins) that I remove some lines of code for the version for afamilyedu.com? Remove all, except the network setup ones..? (just wanting to make sure) 😀Forum: Networking WordPress
In reply to: Turning an existing subdomain into a network (multisite)Here’s the .htaccess for afamilyedu.com:
# BEGIN WordPress
AddHandler application/x-httpd-php70 .php
<IfModule mod_expires.c>
ExpiresActive On
ExpiresByType image/jpg “access plus 1 year”
ExpiresByType image/jpeg “access plus 1 year”
ExpiresByType image/gif “access plus 1 year”
ExpiresByType image/png “access plus 1 year”
ExpiresByType text/css “access plus 1 month”
ExpiresByType application/pdf “access plus 1 month”
ExpiresByType text/javascript “access plus 1 month”
ExpiresByType text/html “access plus 2 hours”
ExpiresByType image/x-icon “access plus 1 year”
ExpiresDefault “access plus 6 hours”
</IfModule>
Options -Indexes
Header set X-Endurance-Cache-Level “2”
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^/wp-content/endurance-page-cache/ – [L]
RewriteCond %{REQUEST_METHOD} !POST
RewriteCond %{QUERY_STRING} !.*=.*
RewriteCond %{HTTP_COOKIE} !(wordpress_test_cookie|comment_author|wp\-postpass|wordpress_logged_in|wptouch_switch_toggle|wp_woocommerce_session_) [NC]
RewriteCond %{DOCUMENT_ROOT}/wp-content/endurance-page-cache/$1/_index.html -f
RewriteRule ^(.*)$ /wp-content/endurance-page-cache/$1/_index.html [L]
</IfModule>
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
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).*) $1 [L]
RewriteRule ^(.*\.php)$ $1 [L]
RewriteRule . index.php [L]
</IfModule># END WordPress
Forum: Networking WordPress
In reply to: Turning an existing subdomain into a network (multisite)Here’s the .htaccess for mkspencers.com:
# Use PHP5.6 as default
AddHandler application/x-httpd-php56 .php# BEGIN WordPress
AddHandler application/x-httpd-php70 .php
<IfModule mod_expires.c>
ExpiresActive On
ExpiresByType image/jpg “access plus 1 year”
ExpiresByType image/jpeg “access plus 1 year”
ExpiresByType image/gif “access plus 1 year”
ExpiresByType image/png “access plus 1 year”
ExpiresByType text/css “access plus 1 month”
ExpiresByType application/pdf “access plus 1 month”
ExpiresByType text/javascript “access plus 1 month”
ExpiresByType text/html “access plus 2 hours”
ExpiresByType image/x-icon “access plus 1 year”
ExpiresDefault “access plus 6 hours”
</IfModule>
Options -Indexes
Header set X-Endurance-Cache-Level “2”
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^/wp-content/endurance-page-cache/ – [L]
RewriteCond %{REQUEST_METHOD} !POST
RewriteCond %{QUERY_STRING} !.*=.*
RewriteCond %{HTTP_COOKIE} !(wordpress_test_cookie|comment_author|wp\-postpass|wordpress_logged_in|wptouch_switch_toggle|wp_woocommerce_session_) [NC]
RewriteCond %{DOCUMENT_ROOT}/wp-content/endurance-page-cache/$1/_index.html -f
RewriteRule ^(.*)$ /wp-content/endurance-page-cache/$1/_index.html [L]
</IfModule>
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule># END WordPress
Forum: Networking WordPress
In reply to: Turning an existing subdomain into a network (multisite)Thank you.. I’ll clarify:
My hosting account is all based on one website – mkspencers.com
the domain afamilyedu.com is set up as a subdomain of mks…I have afamilyedu.com set up as a mulitsite network with it’s own subdomains (e.g. arizona.afamilyedu, nebraska.afamilyedu.com, etc.)
Yes, I followed all the steps on that page.
You’ll see if you go to any of the network addresses (nebraska.afamilyedu.com) you are taken to mkspencers.com instead (there’s a picture of Matt & I)
Does that make sense?