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! >