Skip to content

Instantly share code, notes, and snippets.

@mw-mcw
mw-mcw / .htaccess
Created October 18, 2022 18:30 — 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/
@mw-mcw
mw-mcw / auto-autocomplete.md
Created October 13, 2018 10:32
Add tab autocompletions via --help switch (zsh)

How to add tab autocompletions for any command that will accept the --help switch:

add compdef _gnu_generic [command] to .zshrc

For example cat --help.

compdef _gnu_generic cat