xxxxxxxxxx
code ~/.bashrc # or use vim or nano, this will permanently change the alias until further manual edit
alias la="cd /your/specified/path"
# Save and Close the file
source ~/.bashrc # This will make sure the changes are in effect
xxxxxxxxxx
# syntax
# alias *<alias-name>="*<what-alias-represents>"
# example
alias ll="ls -lrt"