I was installing php 4.2.0 and apache 1.3x on winnt 4 wks, when I goto url http://mypage, I get an error msg :
Forbidden
You don't have permission to access /php/php.exe/index.php on this server
My httpd conf :
NameVirtualHost 127.0.0.1:80
<VirtualHost 127.0.0.1>
ServerAdmin webmaster@localhost
DocumentRoot "D:\Apache\Apache\htdocs"
ServerName localhost
ErrorLog logs/localhost-error_log
CustomLog logs/localhost-access_log common
</VirtualHost>
<VirtualHost 127.0.0.1>
ServerAdmin webmaster@mypage
DocumentRoot "D:\Apache\Apache\htdocs\mypage"
ServerName mypage
ServerAlias *.mypage
<Directory "D:\Apache\Apache\htdocs\mypage">
Options All Includes Indexes
Order allow,deny
Allow from all
</Directory>
</VirtualHost>
My Hosts conf :
127.0.0.1 localhost
127.0.0.1 mypage
Anyone can help me?