new Multisite, subdomains admin goes 404
-
I’m at wits end……and frustrated.
Installed wordpress a few days ago, followed the multisite instructions, changed the htacces and wp-config files and all. I have a network admin dashboard on main site, complete with “sites” that show any new sites I add so prob there. I have wildcard domains setup on Bluehost (after pulling teeth). My main site is fine, susanszoocrew.com, no problems getting into susanszoocrew.com/wp-admin.
BUT, if I go into wordpress admin and create a new site, bonsai.susanszoocrew.com, when I go to bonsai.susanszoocrew.com/wp-admin, or when I hit “dashboard” under that site in wp, I get an error. At first I got a 500 server error, bluehost told me to rename htacces, which I did to htaccess_old. Now I get a
404 Error File Not Found
The page you are looking for might have been removed,
had its name changed, or is temporarily unavailable.Bluehost is telling me I have to install wordpress into each subdomain…um nooo. I read through here, I did find a set of things to try with 404 errors, one said this:
************************
“Main site works but 404 errors show up when trying to access added child subdomain sites”. (thats me)
“Ubuntu 10.04 LAMP apache2 install needs these steps:
sudo a2enmod rewrite sudo nano /etc/apache2/sites-avail/default
and change in two places the ‘AllowOveride None’ to ‘AllowOveride all’
/etc/init.d/apache2 restart
to restart apache2 “
********************I’m thinking great, that’s eactly my problem… but WHERE are those steps supposed to go ? Where do I put those lines of code? Where do I find allowoverride? Is this on blue host, somewhere in my wp dashboard, what? Ack!
So,
My current htaccess is# Use PHP5 Single php.ini as default AddHandler application/x-httpd-php5s .php # BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] # uploaded files RewriteRule ^([_0-9a-zA-Z-]+/)?files/(.+) wp-includes/ms-files.php?file=$2 [L] # add a trailing slash to /wp-admin RewriteRule ^([_0-9a-zA-Z-]+/)?wp-admin$ $1wp-admin/ [R=301,L] RewriteCond %{REQUEST_FILENAME} -f [OR] RewriteCond %{REQUEST_FILENAME} -d RewriteRule ^ - [L] RewriteRule ^[_0-9a-zA-Z-]+/(wp-(content|admin|includes).*) $1 [L] RewriteRule ^[_0-9a-zA-Z-]+/(.*\.php)$ $1 [L] RewriteRule . index.php [L] </IfModule> # END WordPress
I did also see a mention of checking a httpD something or other, can’t find the post now, but I don’t have a clue where I’d find a httpD file to look at?
I can’t find what’s wrong! I even went into the directory bonsai taht was created after i “new site” and edited the htaccess there to match the one I posted above. I have not made a folder or a subdomain on my host named bonsai, so that eliminates that variable…
Can anyone help? I’d appreciate any clues :). I’m going in circles trying to read codex because it doesn’t tell you WHERE you find these files to edit…….
Thanks for any help!
- The topic ‘new Multisite, subdomains admin goes 404’ is closed to new replies.