.htaccess & WordPress: Exclude folder from RewriteRule

前端 未结 17 1541
不思量自难忘°
不思量自难忘° 2020-11-29 06:37

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

17条回答
  •  孤独总比滥情好
    2020-11-29 07:16

    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

提交回复
热议问题