I have a drupal instance on a linux server located at
var/www/html
I created a indepent html file called index.html in the following directory
var/www/html/special_project/index.html
I am able to see "special_project/index.html" by typing
mysite/special_project/index.html
I want to include some javascript files located in special_project/script,
example:
<script type='text/javascript' src='script/my_script.js'></script>
however at this point the server has some rewite rule, loads the Drupal bootstrap and throws back a page not found error for the javascript.
Is there something I can put in .htaccess file to indicate to the server to prevent this behaviour?
EDIT
This is what virtual hosts looks like now:
<VirtualHost *:80>
ServerName intranet.mysite.com
DocumentRoot "/var/www/html"
</VirtualHost>
If I modified the following as Shane suggested, should it do the trick?
<VirtualHost *:80>
Alias /special_project /var/www/html/special_project
<Directory /var/www/html/special_project>
Order allow,deny
Allow from all
</Directory>
ServerName intranet.mysite.com
DocumentRoot "/var/www/html"
</VirtualHost>