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

有帮助吗?

解决方案

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.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top