Error 404 in sites
-
I have tried all the solutions I have read in similar posts, whith no success.
I have a domain (www.domain.com) pointing to my installation (http://installation.com/wordpress). I have installed the multisite without errors. everything works fine but when I create a new site, I have a 404 error.
http://domain.com/mainsite OK
http://domain.com/newsite NOT OKI have checked de database and I have in wp_options:
siteurl: http://domain.com
home: http://domain.comAnd in wp_2_options:
siteurl: http://domain.com/newsite
home: http://domain.com/newsiteI think it could be an .httpd.conf error, but I have just copied and pasted what WordPress said:
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ – [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).*) $2 [L]
RewriteRule ^([_0-9a-zA-Z-]+/)?(.*\.php)$ $2 [L]
RewriteRule . index.php [L]Anyone can help me? I’m a liitle bit desperate 🙁
The topic ‘Error 404 in sites’ is closed to new replies.