Hi guy's,
My permalink’s have stopped working for some sub-folder sites of a local WAMP multi-site install, but only some not all ??.
base network is http://ccc.loc/
and an example it the “ccconlineold” site and page “contact-us”
http://ccc.loc/ccconlineold/contact-us/
..which now only works for Permalink Settings = “Default”
for the Custom Structure =”/%postname%/” it shows no results for the page.
But it strange that not all the sites are broken?
one side thought ..would through Network Admin … sites… and editing the site “Path” (ccconlineold) break anything?
I’ve re-followed the codex advice (Using_Permalinks) but after day’s of trying can’t fix it.
My setup is as per..
• Apache 2.2.21
• Wordpress 3.5
• All plugins off
httpd.config …
# First, we configure the "default" to be a very restrictive set of
# features.
#
<Directory />
Options FollowSymLinks
AllowOverride all
Order deny,allow
Deny from all
</Directory>
httpd-vhosts.conf (extract..) …
NameVirtualHost localhost
<VirtualHost *:80>
DocumentRoot C:/wamp/www/
ServerName localhost
</VirtualHost>
<VirtualHost *:80>
ServerAdmin admin@ccc.loc
DocumentRoot "C:/wamp/www/ccc.loc"
ServerName ccc.loc
ServerAlias http://www.ccc.loc
ErrorLog "ccc.loc-error.log"
CustomLog "ccc.loc-access.log" common
</VirtualHost>
Any ideas ?