- At first I kept getting a "permission denied" error - you'll need to search the httpd.conf file for the <Directory /> container and get rid of
Deny from all. (Or at least comment it out, anyway.) - The mod-rewrite wouldn't work. Two steps to fix this:
- Search httpd.conf for mod_rewrite and uncomment the
LoadModuleline. - Search for AllowOverride. There should be two instances where you need to change
NonetoAll. (Source)
- Search httpd.conf for mod_rewrite and uncomment the
Now I can get back to work!