Skip to content

Instantly share code, notes, and snippets.

@ronaldsgailis
ronaldsgailis / map.geojson
Created August 12, 2013 19:26
via:geojson.io
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@ronaldsgailis
ronaldsgailis / .htaccess
Created October 7, 2012 13:47
Files for simple url shortener in PHP and MySQL
RewriteEngine On
RewriteBase /
RewriteRule ^shorten/(.*)$ shorten.php?url=$1 [L,QSA]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?code=$1 [L,QSA]