Do want to build your own small webserver on (any) windows? I recommend Apache Friends: http://www.apachefriends.org/en/index.html For the record: WAMP: Windows (operating system), Apache (webserver), Mysql (database) and PHP (Scripting language)It’s perfect for creating a local server for testing purposes, ofcourse you can set your server world wide open, but please be aware that webserver security is a speciality!!! You are warned!
A small tip to get those nifty URL’s: Make sure you have the following in your httpd.conf. Replace “C:/www” with the directory under your
DocumentRoot where you placed .htaccess file. Once you’ve copied the lines below into Apache configuration file restart web server and URL rewriting should work.
1 2 3 4 5 6 7 8 9 10 11 12 13 | <Directory> Options FollowSymLinks AllowOverride None </Directory> <Directory "C:/www"> Options Indexes Includes FollowSymLinks MultiViews AllowOverride All Order allow,deny Allow from all </Directory><Files ~ "^\.ht"> Order allow,deny Deny from all </Files> |
<Directory> Options FollowSymLinks AllowOverride None </Directory> <Directory "C:/www"> Options Indexes Includes FollowSymLinks MultiViews AllowOverride All Order allow,deny Allow from all </Directory><Files ~ "^\.ht"> Order allow,deny Deny from all </Files>





