i am use a lamp environment ,
What things I need to pay attention during the development of the site,
if the client wants to be ready to use CDN ?
thanks
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
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.
The easiest is probably to make sure that static assets (images, javascript and CSS, usually) is easily cachable, and movable. We’ve done this using a special template function that takes a relative URL (something like
/images/graphics/someimage.png) and turns it into a link to our static server (http://static.example.com/images/graphics/someimage.png).When you have a function that does this, and use it to generate all static asset URLs, it will be trivial later on to move these assets to a different server, or even to different servers based on geolocation.