I'm having a bit of a problem in getting something working here.
The provider of my software says that this is a .htaccess problem
I know that some directives are not allowable on BQ machines or RAQs.
This is what they need:
--
Options +FollowSymlinks
DirectoryIndex index.html index.htm index.php
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_URI} !/*/wp-admin*
RewriteCond %{REQUEST_URI} !/*/wp-login.php
RewriteRule . /index.php [L]
RewriteRule ^(.*)/wp-admin/(.*)$ /wp-admin/index.php?subdomain=$1 [R,L]
RewriteRule ^(.*)/wp-login.php$ /wp-login.php?subdomain=$1 [R,L]
</IfModule>
---
Is this allowed?
If not, How can I achieve this?
Thanks and regards
Revd leonard