My virtualhost setting for domain to directory was configured ok and virtual host working for 3 domain.
However plone running on port 8080 at the back is not accessible when requested on port 80.
Below is the snippet of the configuration of httpd.conf:
<VirtualHost *:80>
ServerName dev.domain3.com
RewriteEngine On
RewriteRule ^/(.*)
http://127.0.0.1:8080/VirtualHostBase/http/dev.domain3.com:80/ranaco/VirtualHostRoot/$1 [L,P]
ServerAdmin roslan@gmail.com
</VirtualHost>
What I get is this:
Forbidden
You don't have permission to access / on this server.
Additionally, a 403 Forbidden error was encountered while trying to use an ErrorDocument to handle the request.
Plone is running cos:
http://dev.domain3.com:8080/ranacogives me the welcome to plone page
Thanks.