Advertisement
Grork

Exclude directory from htaccess WordPress

Feb 25th, 2016
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. # BEGIN WordPress
  2.  
  3. <IfModule mod_rewrite.c>
  4. RewriteEngine On
  5. RewriteBase /
  6. RewriteRule ^index\.php$ - [L]
  7.  
  8. RewriteCond %{REQUEST_URI}  !(forum) [NC]
  9.  
  10. RewriteCond %{REQUEST_FILENAME} !-f
  11. RewriteCond %{REQUEST_FILENAME} !-d
  12. RewriteRule . /index.php [L]
  13. </IfModule>
  14.  
  15. # END WordPress
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement