Want im trying to acheive, when url is hitting localhost/nap/ , internally it should call the url localhost/nap/inspect.do
To acheive this, Using Apache 2.2, following are the steps i followed,
- Uncomment the line, LoadModule rewrite_module modules/mod_rewrite.so
Added he following line in httpd.cnf file RewriteEngine On RewriteCond %{REQUEST_URI} !^/nap/ RewriteRule ^(.*)$ /nap/inspect.do$1 [L] restarted the apache server
But this configuration doesnt help me