Skip to content

Instantly share code, notes, and snippets.

View lambirou's full-sized avatar
🏠
Working from home

Roland Edi lambirou

🏠
Working from home
View GitHub Profile
@lambirou
lambirou / .htaccess
Created August 11, 2020 18:21 — forked from ScottPhillips/.htaccess
Common .htaccess Redirects
#301 Redirects for .htaccess
#Redirect a single page:
Redirect 301 /pagename.php http://www.domain.com/pagename.html
#Redirect an entire site:
Redirect 301 / http://www.domain.com/
#Redirect an entire site to a sub folder
Redirect 301 / http://www.domain.com/subfolder/
@lambirou
lambirou / package.json
Created October 21, 2020 11:59 — forked from adamreisnz/package.json
Simple pure npm scripts build process
{
"name": "project-name",
"description": "Template for static sites",
"version": "1.0.0",
"homepage": "http://www.project-name.com",
"author": {
"name": "Adam Reis",
"url": "http://adam.reis.nz"
},
"license": "UNLICENSED",