tairezzzz/mobbbi-web/master/.htaccess - Htaccess File

tairezzzz/mobbbi-web/master/.htaccess

<IfModule mod_rewrite.c>
    Options +FollowSymlinks
  # Options +SymLinksIfOwnerMatch
    RewriteEngine On
    RewriteBase /

    RewriteCond %{QUERY_STRING} ^_escaped_fragment_=/?(.+)$ [NC]
    RewriteRule ^ snapshots/%1.html? [NC,L]

    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteCond %{REQUEST_URI} !index
    RewriteCond %{REQUEST_URI} !.*.(css|js|html|png)
    RewriteRule (.*) index.html [L]

</IfModule>

On Github License

Files

Download PDF of Htaccess file
QUERY_STRING, REQUEST_FILENAME, REQUEST_URI

Comments

Apache