How to redirect (or Alias) jump page with Apache
        Posted  
        
            by 
                Meltemi
            
        on Server Fault
        
        See other posts from Server Fault
        
            or by Meltemi
        
        
        
        Published on 2010-05-13T18:13:34Z
        Indexed on 
            2012/03/24
            23:31 UTC
        
        
        Read the original article
        Hit count: 397
        
I'm not an Apache expert but need to make a small change to a web server. We are introducing a "jump page" URL that is different from a primary URL (for tracking reasons).
/productA/index.html
/productA/jump_index.html
Basically i want to log that jump_index.html was requested and then return index.html. I don't want the client to wait 8 seconds or so for a redirect.
How should we be handling this? Simply symlink (or alias) the file in the filesystem? Use mod_alias Alias Match (if so how exactly)? something better still?
Edit: mod_rewrite in httpd.conf:
<IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteCond %{REQUEST_METHOD} ^TRACE
    RewriteRule .* - [F]
</IfModule>
        © Server Fault or respective owner