Guest User

Untitled

a guest
Aug 15th, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. #placed in .htaccess together with coming-soon.html
  2. <IfModule mod_rewrite.c>
  3. RewriteEngine On
  4.  
  5. # Allow all static image
  6. RewriteRule ^static/img/(.*)$ static/img/$1 [L]
  7.  
  8. # Show coming soon page
  9. RewriteCond %{REMOTE_ADDR} !=127.0.0.0 #internal public ip address
  10. RewriteRule ^ coming-soon.html [L]
  11. </IfModule>
Add Comment
Please, Sign In to add comment