On Sun, Jun 7, 2015 at 1:24 PM, Christian Weiske <cweiske@xxxxxxxxxx> wrote: > > $ curl -I example.org/ > ... > Link: <http://example.org/index.htm>; rel="self" > > But I do not get the original request URI ("/" only), which is what I'm > looking for. If you want the original URI instead of the DirectoryIndex, you probably need to save it in an environment variable with a RewriteRule, and then use that variable in the Header rule. Something like: RewriteEngine On RewriteRule ^ - [E=ORIGINAL_URI:%{REQUEST_URI}] Header append Link '<http://example.org%{ORIGINAL_URI}e> --------------------------------------------------------------------- To unsubscribe, e-mail: users-unsubscribe@xxxxxxxxxxxxxxxx For additional commands, e-mail: users-help@xxxxxxxxxxxxxxxx