taith Posted February 1, 2009 Share Posted February 1, 2009 hello again i'm trying to use this mod-rewrite to change my url.com/test/script to url.com/index.html?s=test/script RewriteEngine on RewriteRule ^(.*/.*)$ index.html?s=$1 [L] which works all well and good... but its mucking up with an images/js files in folders also... anyone know how to set that conditional to ignore "images/" and "jscripts/" folders? Quote Link to comment Share on other sites More sharing options...
printf Posted February 1, 2009 Share Posted February 1, 2009 in the images & jscript folders place a htaccess file with the following... mod_rewrite off Quote Link to comment Share on other sites More sharing options...
taith Posted February 1, 2009 Author Share Posted February 1, 2009 i tried that... only gave an internal server error... i also tried turning the rewrite engine off, which worked when accessing them folders by url, but was still blocking the urls from html(images/, jscript/) Quote Link to comment Share on other sites More sharing options...
Monk3h Posted February 1, 2009 Share Posted February 1, 2009 do you have a .htaccess file for allowing globals? if not and you have them enables some use an alternate method, if this is the case then .htaccess will be disabled. Such as php.ini Quote Link to comment Share on other sites More sharing options...
taith Posted February 1, 2009 Author Share Posted February 1, 2009 do you have a .htaccess file for allowing globals? if not and you have them enables some use an alternate method, if this is the case then .htaccess will be disabled. what are you talking about? .htaccess is allowed... else i wouldnt be troubling with this... globals are for php, not apache's rewrite engines... and why would i need to use another method? this way works perfectly, save for those 2 folders i want it to ignore... Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.