Domanda

I test speed of my site loading and the result give me the answer for my site's low speed loading is .......

Resources with a "?" in the URL are not cached by some proxy caching servers. Remove the query string and encode the parameters into the URL for the following resources:

http://mydomain1.com/css/layout.css?v2.2

here how can i Remove the "?" from the above link and encode the parameter into the url.??

È stato utile?

Soluzione

That message means you should do it like:

http://mydomain1.com/css/layout.css/v2.2

Using a / instead of a ?. How you achieve to parse this on server side depends on the technology you are using.

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top