Skip to content

Instantly share code, notes, and snippets.

@jasonruesch
jasonruesch / .htaccess
Last active July 7, 2019 02:22
AngularJS html5Mode rewrite rules with local API support
<IfModule mod_rewrite.c>
RewriteEngine On
# API Rules
RewriteRule ^api/(.*)\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^api/(.*)$ api/$1.php [QSA,L]
# AngularJS Rules
@jasonruesch
jasonruesch / deploy.sh
Last active September 30, 2016 04:05
KUDU Deployment Script with Grunt and Bower support
#!/bin/bash
# ----------------------
# KUDU Deployment Script
# Version: 0.1.7
# ----------------------
# Helpers
# -------