Guest User

Untitled

a guest
Nov 18th, 2017
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1. RewriteRule ^piercing/([^/]*)$ piercing.php
  2. RewriteRule ^piercing/location/([^/]*)$ piercing.php?location=$1
  3. RewriteCond %{SCRIPT_FILENAME} -f
  4. RewriteRule ^ - [L]
  5.  
  6. <IfModule mod_rewrite.c>
  7. RewriteCond %{TIME} <20171201000000
  8. # DESKTOP
  9. #RewriteCond %{REMOTE_ADDR} !^00.000.00.00
  10. # PHONE
  11. #RewriteCond %{REMOTE_ADDR} !^000.000.0.00
  12. RewriteCond %{REQUEST_FILENAME} !(styles|images|javascript).+$
  13. RewriteCond %{REQUEST_URI} !aftercare.php$ [NC]
  14. RewriteCond %{REQUEST_URI} !faq.php$ [NC]
  15. RewriteCond %{QUERY_STRING} !redirect=(?:construction|404)$ [NC]
  16. RewriteCond %{REQUEST_URI} !.(jpe?g?|png|gif|css|ttf|woff|js) [NC]
  17. RewriteRule .* index.php?redirect=construction [R=302,L]
  18. </IfModule>
Add Comment
Please, Sign In to add comment