Hi,

Readme.txt only specify a url if your drupal site is installed at the root. If you have your site inside a path, as http://example.com/my_site, the .htaccess should be edited:

# Rewrite JavaScript callback URLs of the form 'js.php?q=x'.
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} ^\/my_site\/js\/.*
 RewriteRule ^(.*)$ js.php?q=$1 [L,QSA]

As Boost module, to make everything easir, i think this module should provide a UI menu link to build this htaccess with the correct base_url.

bye

Comments

michielnugter’s picture

Status: Active » Closed (fixed)

I added a note in the readme.txt for both the 6.x and 7.x version. An interface for this is a bit too much as this is a module for advanced users anyway.

michielnugter’s picture

I actually implemented this in the dev branch for 7.x-1.0.