Skookum-Nightshift/speak-up/master/.htaccess - Htaccess File

Skookum-Nightshift/speak-up/master/.htaccess

<IfModule mod_rewrite.c>

  Options +FollowSymlinks
  RewriteEngine on

  RewriteOptions inherit

  ############################################
  ## always send 404 on missing files in these folders

      RewriteCond %{REQUEST_URI} !^/(css|theme|js)/

  ############################################
  ## never rewrite for existing files, directories and links

      RewriteCond %{REQUEST_FILENAME} !-f
      RewriteCond %{REQUEST_FILENAME} !-d
      RewriteCond %{REQUEST_FILENAME} !-l

  ############################################
  ## rewrite everything else to index.php

      RewriteRule .* index.php [L]

</IfModule>

On Github License

Files

Download PDF of Htaccess file
REQUEST_FILENAME, REQUEST_URI

Comments

Apache