Question

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.??

Was it helpful?

Solution

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.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top