On Sun, Jun 7, 2015 at 1:24 PM, Christian Weiske <cwei...@cweiske.de> 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-unsubscr...@httpd.apache.org
For additional commands, e-mail: users-h...@httpd.apache.org

Reply via email to