Still Building in Ubuntu (the apache problem)

Remember the problem I had here:

Search for the line beginning with APACHE_MODULES, which should look like:

APACHE_MODULES="actions access alias auth ... php4 php5"

The APACHE_MODULES directive lists all of the extension modules that the Apache Web server will use when started. We must add mod_rewrite to the list. Append rewrite to the end of the list:

APACHE_MODULES="actions access alias auth ... php4 php5 rewrite"

Well in the galaxy of Linux, planet Ubuntu, a way was found! Since Ubuntu is the spawn of Debian, we must adhere to the Debian way! As root, I had to add a rewrite module so apache could work properly. Apache is fine now and I'm able to move on to the next step; thanks jpr! Stay tuned!!