I have this .htaccess file in WordPress. It\'s located at /public_html/ (web root). I need to exclude a folder (csNewsAd) from the rewrite engine. I\'ve tried this, based fr
I was having a similar problem for two sites of mine. The comments I read here didn't work for me, but I finally got this code to work:
RewriteEngine on # stuff to let through (ignore) RewriteCond %{REQUEST_URI} "/folder1/" RewriteRule (.*) $1 [L]
obtained from https://www.drupal.org/node/30334