After wrestling for a long while with trying to get Clean URLs working (500 error), I finally have figured out the problem. In my httpd.conf the mod_rewrite.so module was NOT set to load when Apache was started...
After uncommenting the following line, making the changes according to the "Clean URLs" tutorial in the Tips & Tricks section of DOCUMENTATION, and restarting Apache, it works as expected.
Code: Select all
#LoadModule rewrite_module modules/mod_rewrite.soCode: Select all
LoadModule rewrite_module modules/mod_rewrite.soIs this something commercial webhosts enable by default? I'm using a local version of Apache, MySQL, PHP and not a commercial webhost for learning this great CMS

