


PHP operates Last-Modified and etag to achieve further pseudo-static and 304_PHP tutorial
做了比较久的伪静态方面的探索,最后发现,用以下方法可以实现针对SEO的伪静态,同时也有减少服务器压力的效果.
>> 访问PHP页面
>> 根据内容更新时间生成Last-Modified,根据文件名与内容更新时间生成etag
>> 对客户端的数据做对比,如查看客户端浏览器的Last-Modified,对比etag等,如果相等,输出304,停止输出最新数据
>> 如果不相等,照常输出最新数据,并返回Last-Modified和etag给客户端
/**
* 输出head Last-Modified 并判断是否输出304
*/
protected function _echo_last_etag($tmp_time){
$now_url =get_absolute_url();
$md5 = md5($now_url.$tmp_time);
$etag = '"' . $md5 . '"';
header('Last-Modified: '.gmdate('D, d M Y H:i:s',$tmp_time ).' GMT');
header("ETag: $etag");
if((isset($_SERVER['HTTP_IF_MODIFIED_SINCE']) && strtotime($_SERVER['HTTP_IF_MODIFIED_SINCE']) >= $tmp_time) || (isset($_SERVER['HTTP_IF_UNMODIFIED_SINCE']) && strtotime($_SERVER['HTTP_IF_UNMODIFIED_SINCE']) < $tmp_time) || (isset($_SERVER['HTTP_IF_NONE_MATCH']) && $_SERVER['HTTP_IF_NONE_MATCH'] == $etag)){
header("HTTP/1.1 304 Not Modified");
exit(0);
}
}
摘自 小强的专栏

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

To work on file upload we are going to use the form helper. Here, is an example for file upload.

In this chapter, we are going to learn the following topics related to routing ?

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

Validator can be created by adding the following two lines in the controller.

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c
