Ankündigung

Einklappen
Keine Ankündigung bisher.

Http_if_modified_since

Einklappen

Neue Werbung 2019

Einklappen
X
  • Filter
  • Zeit
  • Anzeigen
Alles löschen
neue Beiträge

  • Http_if_modified_since

    Folgenden Code-Schnipsel habe ich in einer htaccess-Datei gefunden:
    RewriteEngine on
    RewriteRule .* - [E=HTTP_IF_MODIFIED_SINCE:%{HTTP:If-Modified-Since}]
    RewriteRule .* - [E=HTTP_IF_NONE_MATCH:%{HTTP:If-None-Match}]
    So etwas bin ich noch nie begegnet.
    Ich erinnere mich, dass ich mit einer "RewriteRule [...] -" einmal die Hotlink-Protektion in einem Unterordner ausgeschaltet habe.

    Meine Fragen:
    Was bewirkt der Bindestrich?

    Was genau passiert da? Sind das die E-Tags? Wird da ein Header für jeden Request gesetzt?

    Ich habe die .htaccess probeweise einmal in einen Bilder-Ordner verschoben. Lädt alles ohne Probleme.

  • #2
    Apache module mod_rewrite

    There is a special substitution string named '-' which means: NO substitution! Sounds silly? No, it is useful to provide rewriting rules which only match some URLs but do no substitution, e.g., in conjunction with the C (chain) flag to be able to have more than one pattern to be applied before a substitution occurs.
    'env|E=VAR:VAL' (set environment variable)
    This forces an environment variable named VAR to be set to the value VAL, where VAL can contain regexp backreferences $N and %N which will be expanded. You can use this flag more than once to set more than one variable. The variables can be later dereferenced in many situations, but usually from within XSSI (via <!--#echo var="VAR"-->) or CGI (e.g. $ENV{'VAR'}). Additionally you can dereference it in a following RewriteCond pattern via %{ENV:VAR}. Use this to strip but remember information from URLs.
    Über 90% aller Gewaltverbrechen passieren innerhalb von 24 Stunden nach dem Konsum von Brot.

    Kommentar


    • #3
      Du solltest dir wirklich mal angewöhnen, dich zu informieren, bevor du fragst.
      Gilt für deinen anderen Thread von heute, unbekannte Wordpress-Funktionen, genauso wie hier.
      [SIZE="1"]RGB is totally confusing - I mean, at least #C0FFEE should be brown, right?[/SIZE]

      Kommentar

      Lädt...
      X