[jQuery] Re: Jquery doesn't work with mod_rewrite ?

2007-07-22 Thread Nico
Hello, I've got two parts in my file. When I access my website by typing my.site.com, JQuery doesn't work even in the file jquery.js is correctly loaded. However, when I am on www.site.com, everything works perfectly. RewriteCond %{HTTP_HOST} ^my\.site.com [NC] RewriteRule ^inscription.html$

[jQuery] Re: Jquery doesn't work with mod_rewrite ?

2007-07-22 Thread Nico
Hello; I've got two parts in my file. The first part is : RewriteCond %{HTTP_HOST} ^my\.site.com [NC] RewriteRule ^inscription.html$ /home/site/www/index.php?op=inscription [L] RewriteRule ^inbox.html$ /home/site/www/index.php?op=zm_msg [L] And the second part is : RewriteCond

[jQuery] Re: Jquery doesn't work with mod_rewrite ?

2007-07-22 Thread Remy Sharp
Try opening your site in Firefox, open Firebug and click on the scripts tab - have a look at what the jquery.js file is being served up as. It sounds like your mod_rewrite rules may be redirecting the the request for the jquery.js library to another (wrong) location. On Jul 22, 10:21 am, Nico

[jQuery] Re: Jquery doesn't work with mod_rewrite ?

2007-07-22 Thread Nico
That works now :) The bug was because of the base / tag. Thank You ! Nico.

[jQuery] Re: Jquery doesn't work with mod_rewrite ?

2007-07-21 Thread John Resig
What's your rewrite rule? I rewrite the URLs for the jquery.js files on jquery.com and never had any problems. --John On 7/21/07, Nico [EMAIL PROTECTED] wrote: Hello, I've already post this message in another lists wihch was not the right one. Hello, First of all, I'd like to say that the