I have downloaded and installed latest version of server2go. I put my all files in htdocs folder with .htaccess file where I have rewritten various rules...
<IfModule mod_rewrite.c>
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !=/favicon.ico
RewriteRule ^Home$ index.php
Then I tried 127.0.0.1/Home in the browser; it didn't work. However 127.0.0.1/index.php is working!!!
I have enabled module rewrite in httpd.conf file & also written "Override All" in it!!