I am trying to get Apache work and here is my configuration:
System32/hosts:
127.0.0.1 localhost
127.0.0.1 rss.local
httpd-vhosts.conf
NameVirtualHost *:80
<Virtualhost *:80>
ServerName rss.local
DocumentRoot C:\Users\Jansu\workspace\rss
SetEnv APPLICATION_ENV "development"
<Directory C:\Users\Jansu\workspace\rss>
DirectoryIndex index.php
AllowOverride All
Order allow,deny
Allow from all
</Directory>
</VirtualHost>
when i go to rss.local with browser , I am gettings message IT WORKS!, which is the default message for Apache.
But my C:\Users\Jansu\workspace\rss\index.php is:
<?php
echo phpinfo();
?>
How can I get it to work? Any suggetions?
Feel free to ask more info.