CDPATH

Similarly to the PATH variable you can use the CDPATH variable to set directories to search for targets that you provide to the cd command. Example:

$ mkdir /tmp/foo/
$ cd foo
bash: cd: foo: No such file or directory
$ export CDPATH=/tmp
$ cd foo
/tmp/foo
/tmp/foo$