Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 483277
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T01:10:51+00:00 2026-05-13T01:10:51+00:00

Is there a way (an http header) to tell browsers not to distinguish between

  • 0

Is there a way (an http header) to tell browsers not to distinguish between main.css and main.css?someparam=1 when performing caching.

According to w3c spec:

since some applications have traditionally used GETs and HEADs with query URLs (those containing a “?” in the rel_path part) to perform operations with significant side effects, caches MUST NOT treat responses to such URIs as fresh unless the server provides an explicit expiration time. This specifically means that responses from HTTP/1.0 servers for such URIs SHOULD NOT be taken from a cache

My Firefox 3.5.5 re-fetches the files from the server, if the GET parameter changes. If it doesn’t change, it servers the content from the cache. (verified that with FireBug).

So, is there a way to cope with this (without removing the get parameter).

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-13T01:10:52+00:00Added an answer on May 13, 2026 at 1:10 am

    It’s not quite clear which side requires params in URL: server or client? Anywway, your server can behave so that the client deals with the same URL and won’t need any magic headers that don’t exist. 😉

    If server requires params, you can add that parameter with Apache URL rewrite, if you use Apache:

    RewriteRule ^style.css$ /style.css?param=1 [L]
    

    There are other things Rewrite Engine can do, and you can even pass the params via cookies and extract them in RewriteCond lines into query string:

    RewriteCond %{HTTP_COOKIE} a:(.*) # not sure of the syntax
    RewriteRule ^style.css$ /style.css?a=%1 [L]
    

    This way the URL will be the same on the client side.

    If the client sends requests with params, and it can’t work in a different way, you can put an external redirect and set a cookie:

    RewriteCond %{QUERY_STRING} a=(.*)
    RewriteRule ^(.*)$ /$1 [CO=a:%1:mysite.com,R]
    

    This way the browser will consider caching/not caching of the URL without any parameters. Read Rewrite Engine docs, there are other useful features.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is there any way to set the HTTP header fields of a HTML form
Is there a way to specify, in a HTTP header, the transfer rate of
Is there any way to add HTTP header to NSURLRequest object? I used to
Is there any way to pass HTTP AUTH username and password along with an
Is there a way to access the http request IE made when the page
Is there any way to easily make a HTTP request with C++? Specifically, I
is there a way to get a fancybox ( http://fancy.klade.lv/ ) or any other
Is there a way in which the http connection and tcp connection listeners can
Is there a way to find currently active http connections in a page? For
Is there any way to get the HTTP response code that will be sent

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.