My phpinfo.php page works great, but not the testing.php thing!
heres what I have:
httpd.conf file:
NameVirtualHost 127.0.0.1
# VirtualHost example:
# Almost any Apache directive may go into a VirtualHost container.
# The first VirtualHost section is used for requests without a known
# server name.
DocumentRoot C:\wamp\www
ServerName localhost
DocumentRoot C:\wamp\www\testing.com
ServerName local.testing.com
ErrorLog logs/testing_error.log
.htaccess file:
RewriteEngine on
RewriteRule ^test\.php$ phpinfo.php
This works - [
local.testing.com]
This doesnt - [
local.testing.com]
Any hints? Please?