developerdave Posted April 25, 2010 Share Posted April 25, 2010 Hey guys, I have a .htaccess that rewrites all urls to index.php for my cms but I'd like to add some exceptions like Sitemap.php and sitemap.xml I've pasted my current .htaccess below any help is greatly appreciated. RewriteEngine On RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] Link to comment https://forums.phpfreaks.com/topic/199667-htaccess-rule/ Share on other sites More sharing options...
themistral Posted April 25, 2010 Share Posted April 25, 2010 I'm no expert with htaccess but try adding RewriteCond {REQUEST_URI} !^sitemap.xml [NC] before RewriteRule . /index.php [L] Link to comment https://forums.phpfreaks.com/topic/199667-htaccess-rule/#findComment-1047943 Share on other sites More sharing options...
developerdave Posted April 25, 2010 Author Share Posted April 25, 2010 I'm no .htaccess expert either hence being on here lol. That didn't work, I tried changing it from URI to FILENAME and adding a % before like the other RewriteCond's but it still didn't work thanks though man I'm gonna have another Google see if I can't unearth some old topic lol Link to comment https://forums.phpfreaks.com/topic/199667-htaccess-rule/#findComment-1047947 Share on other sites More sharing options...
themistral Posted April 25, 2010 Share Posted April 25, 2010 No worries! There is a specialist mod_rewrite forum under Apache - worth posting (or moving this thread) to there! Good luck! Link to comment https://forums.phpfreaks.com/topic/199667-htaccess-rule/#findComment-1047949 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.