Neven, you are the MAN !!! It worked ! I uncommented the below line in httpd.conf: #LoadModule rewrite_module modules/mod_rewrite.so
and added: <IfModule rewrite_module> RewriteEngine on RewriteRule ^/AppXyz(.*) /App$1 [R,L] </IfModule> Thank you, -sri On Friday, November 22, 2013 3:01 PM, Neven Cvetkovic <neven.cvetko...@gmail.com> wrote: On Fri, Nov 22, 2013 at 2:49 PM, srinivas yelamanchili <y_sr...@yahoo.com>wrote: > I tried each of these lines and they don't work: > Redirect /AppXyz /App > Alias /AppXyz /App > > The apache access_log file shows: > GET /AppXyz/javascript/mojo/js/source/... > > Shouldn't it be 'App' instead of 'AppXyz' ? > > Sri, use RewriteEngine instead. > > Here's an example: > > RewriteEngine on > RewriteRule ^/AppXyz(.*) /App$1 [R,L] > > I have not tested this, but should work something like this: > http://yourhost/AppXyz/somepath/here ---redirects--> > http://yourhost/App/somepath/here > > Hope that helps! >