Ok, I am all googled out and nearing my last hairs to pull out...

I have set up Apache and it runs smooth with the normal document root, which displays just fine.
However, when trying to set up an Alias, I get forbidden 403 on the path.
Alias /archive/ "/mnt/q-archive/HTTP/HTTProot"
<Directory "/mnt/q-archive/HTTP/HTTProot">
Options Indexes MultiViews
AllowOverride None
Order allow,deny
Allow from all
</Directory>
I have tried changing permission on directories and files to allow all, to just apache (the user and group). Also tried with or without the trailing / on archive.
Just to test, I set up a second Alias that just pointed to my 'normal' documentroot. Still does not work as an Alias (though fine as just 127.0.0.1):
# Test for permissions.
Alias /archive2/ "/mnt/n-http/HTTProot"
<Directory "/mnt/n-http/HTTProot">
Options Indexes
AllowOverride None
Order allow,deny
Allow from all
</Directory>
The above
also gives me a 403. I think, by doing this, I have ruled out that it is a permissions problem on the directories/files themselves, and suspect some sort of contradiction in httpd.conf?
error_log confirms:
[Wed Mar 03 12:14:37 2010] [error] [client 127.0.0.1] client denied by server configuration: /mnt/n-http/HTTProotindex.php
[Wed Mar 03 12:14:37 2010] [error] [client 127.0.0.1] client denied by server configuration: /mnt/n-http/HTTProotindex.phtml
[Wed Mar 03 12:14:37 2010] [error] [client 127.0.0.1] client denied by server configuration: /mnt/n-http/HTTProotindex.shtml
[Wed Mar 03 12:14:37 2010] [error] [client 127.0.0.1] client denied by server configuration: /mnt/n-http/HTTProotindex.html
[Wed Mar 03 12:14:37 2010] [error] [client 127.0.0.1] client denied by server configuration: /mnt/n-http/HTTProotindex.htm
[Wed Mar 03 12:14:37 2010] [error] [client 127.0.0.1] client denied by server configuration: /mnt/n-http/HTTProotindex.php
[Wed Mar 03 12:14:37 2010] [error] [client 127.0.0.1] client denied by server configuration: /mnt/n-http/HTTProotDefault.htm
[Wed Mar 03 12:14:37 2010] [error] [client 127.0.0.1] client denied by server configuration: /mnt/n-http/HTTProotdefault.htm
[Wed Mar 03 12:14:37 2010] [error] [client 127.0.0.1] client denied by server configuration: /mnt/n-http/HTTProotdefault.asp
[Wed Mar 03 12:14:37 2010] [error] [client 127.0.0.1] client denied by server configuration: /mnt/n-http/HTTProotindex.xml
I used to get this to work on my previous installations, but can't seem to get it right this time around.
Could anyone point me in the right direction?
I am on KDE4, btw.
Cheers!
CJ