.htaccess & WordPress: Exclude folder from RewriteRule

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

    You should try this one

    # BEGIN WordPress
    
    RewriteEngine On
    RewriteBase /
    RewriteRule ^/(gadget)/(.*) /gadget/$2 [R]
    
    RewriteRule ^index\.php$ - [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    
    
    # END WordPress
    

提交回复
热议问题