By sambtaylor on
I just set up a multisite installation with Drupal 6, and everything seems to be working fine except that it says CLEAN URLS are not configurable for the add on sites. The strange thing is that it is letting me run clean urls on the default site. Does anyone know why this would be, or what I could do? I know that Apache is set up for it--it is already doing it! What are the possible factors that would make it not let me run clean urls?
Comments
.htaccess is the problem
Hi
I assume you have a setup like this:
http://www.example.com
http://www.example.com/site2
and "site2" is not working.
If so then your problem is located in the rewrite rules in the .htaccess file located in the Drupal directory.
The rewrite rule takes for example http://www.example.com/site2/user and makes http://www.example.com/index.php?q=user out of it.
Normally you would change the RewriteBase in the .htaccess file but because of the multi-site setup this is not going to work.
I have no general solution yet. Maybe http://drupal.org/node/21113 helps you.