.htaccess & WordPress: Exclude folder from RewriteRule

前端 未结 17 1495
不思量自难忘°
不思量自难忘° 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:14

    This is the #1 google result and the wrong answer.

    The correct answer is adding this before the Wordpress directives.

    
        RewriteEngine On
        RewriteBase /
        RewriteCond %{REQUEST_URI} ^/subdirectoryname1/(.*)$ [OR]
        RewriteCond %{REQUEST_URI} ^/subdirectoryname2/(.*)$ [OR]
        RewriteRule ^.*$ - [L]
    
    

提交回复
热议问题