Fresh network install – permalinks broken
-
I just setup a new LAMP server in our company to get about 30 blogs hosted internally instead of various places. I have experience with WordPress, but not with MU (or network now…) and I am having an issue.
We got the site installed using subdirectories, and I am going to map root-level domains to each blog once we start migrating. For now though, we are getting our primary company blog setup.
It is the root blog, so the path is /. When I turn on permalinks, all the links though say /blog/… I do not ming that, but the links do not work. I get a page cannot be displayed error.
htaccess is:
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).*) $2 [L] RewriteRule ^([_0-9a-zA-Z-]+/)?(.*\.php)$ $2 [L] RewriteRule . index.php [L]
If I turn on the regular ?p=123, everything works, but no pretty permalinks work.
Any ideas?
Thanks!
- The topic ‘Fresh network install – permalinks broken’ is closed to new replies.