Hi Dandy-wp,
I’m not quite sure if this will resolve your exact problem. However, this is what we did to resolve ours:
1.edit the /etc/httpd/conf/httpd.conf file.
vi /etc/httpd/conf/httpd.conf
Look for the following :
<Directory “/var/www/html”>
…
# AllowOverride controls what directives may be placed in .htaccess files.
# It can be “All”, “None”, or any combination of the keywords:
# Options FileInfo AuthConfig Limit
#
AllowOverride None
Change this last line to:
AllowOverride All
This allows apache to read and interpret the .htaccess located in you document root.
2. Restart Apache: service httpd restart
3. Also when you are setting up the multisite wordpress tells you to copy some code to your .htaccess file and replace what’s already in there or create a file if there’s not one, but you need to put the code between <IfModule mod_rewrite.c> and </IfModule> in the .htaccess file.
By any chance would anyone know where the wordpress stores it’s web pages in CentOs v6.0??
hope that helps!