ChristianSiegert/sunlightphp/master/app/webroot/.htaccess - Htaccess File

ChristianSiegert/sunlightphp/master/app/webroot/.htaccess

<IfModule mod_rewrite.c>
  # Replace "sunlightphp" with your app's directory name.
  # Replace "127.0.0.1" with your server's ip address.

  RewriteEngine On
  
  RewriteCond %{DOCUMENT_ROOT}/sunlightphp/maintenance_mode_on -f
  RewriteCond %{REMOTE_ADDR} !^127.0.0.1$
  RewriteRule .* ../../maintenance/down.php [last]

  RewriteCond %{REQUEST_FILENAME} !-d
  RewriteCond %{REQUEST_FILENAME} !-f
  RewriteRule (.*) index.php?sunlightphp_url=$1 [qsappend,last]
</IfModule>

On Github License

Files

Download PDF of Htaccess file
DOCUMENT_ROOT, REMOTE_ADDR, REQUEST_FILENAME

Comments

Apache