1

I'm using Symphony CMS which as default has a mod_rewrite that rewrites all directories.

However, I need it to ignore the directories test and transfer and all their subdirectories.

Jason Plank
  • 2,336
  • 5
  • 31
  • 40
  • See http://stackoverflow.com/questions/3157/htaccess-directives-to-not-redirect-certain-urls – deceze Jul 02 '09 at 07:12

2 Answers2

1

Place a new .htacess access files in each of your two directories, and then place the following in:

mod_rewrite off

That should sort it.

Martin Bean
  • 38,379
  • 25
  • 128
  • 201
1

Put this rule above the others:

RewriteRule ^(test|transfer)(/|$) - [L]
Gumbo
  • 643,351
  • 109
  • 780
  • 844