PHPFixing
  • Privacy Policy
  • TOS
  • Ask Question
  • Contact Us
  • Home
  • PHP
  • Programming
  • SQL Injection
  • Web3.0

Friday, January 14, 2022

[FIXED] what i need to do in my code of my website to use CDN servers

 January 14, 2022     cdn, lamp, php     No comments   

Issue

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


Solution

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.



Answered By - Vegard Larsen
  • Share This:  
  •  Facebook
  •  Twitter
  •  Stumble
  •  Digg
Newer Post Older Post Home

0 Comments:

Post a Comment

Note: Only a member of this blog may post a comment.

Total Pageviews

Featured Post

Why Learn PHP Programming

Why Learn PHP Programming A widely-used open source scripting language PHP is one of the most popular programming languages in the world. It...

Subscribe To

Posts
Atom
Posts
Comments
Atom
Comments

Copyright © PHPFixing