문제

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