Detailed explanation of pseudo-static transformation of php workerman

1. Find line 176 of \vendor\workerman\workerman\WebServer.php, change it to the following content, and increase the judgment that the html extension file does not exist
if (in_array($workerman_file_extension,['php','html']) && !is_file($workerman_file)) {
$workerman_file = "{$workerman_root_dir}/index.php";
$workerman_file_extension = 'php';
if (!is_file($workerman_file)) {
$workerman_file = "{$workerman_root_dir}/index.html";
$workerman_file_extension = 'html';
}
}After this, as long as you access a file with the extension html, and the file does not exist, it will automatically redirect to index.php, and then make a judgment in index.php
2. index.php Modification, before outputting the page, add the following judgment:
//重定向判断
$uri=$_SERVER['REQUEST_URI'];
$ext=strtolower(substr($uri,-4,4));
if(is_cli()&&$ext=='html'){
$_GET['_']=substr($uri,1,strlen($uri)-5);
}For example, the address I visit is http://c.com/Users_login.html, that is, access index.php?_=Users_login
3. According to $_GET['_'], separate the underscores and determine which class and class method to load. For example:
$_GET['_']=isset($_GET['_'])?$_GET['_']:strcode('Index_index'); $strs=strcode($_GET['_'],'DECODE'); if(!$strs)xdie('param error.'); $d=preg_split('/[\.\_]/',$strs); if(count($d)<2)xdie('error:param'); $class=$d[0].'Action'; $action=$d[1];
Just load the class and run it.
For more workerman knowledge, please pay attention to the workerman tutorial column on the PHP Chinese website.
The above is the detailed content of Detailed explanation of pseudo-static transformation of php workerman. For more information, please follow other related articles on the PHP Chinese website!
What Are the Key Features of Workerman's Built-in WebSocket Client?Mar 18, 2025 pm 04:20 PMWorkerman's WebSocket client enhances real-time communication with features like asynchronous communication, high performance, scalability, and security, easily integrating with existing systems.
How to Use Workerman for Building Real-Time Collaboration Tools?Mar 18, 2025 pm 04:15 PMThe article discusses using Workerman, a high-performance PHP server, to build real-time collaboration tools. It covers installation, server setup, real-time feature implementation, and integration with existing systems, emphasizing Workerman's key f
What Are the Best Ways to Optimize Workerman for Low-Latency Applications?Mar 18, 2025 pm 04:14 PMThe article discusses optimizing Workerman for low-latency applications, focusing on asynchronous programming, network configuration, resource management, data transfer minimization, load balancing, and regular updates.
How to Implement Real-Time Data Synchronization with Workerman and MySQL?Mar 18, 2025 pm 04:13 PMThe article discusses implementing real-time data synchronization using Workerman and MySQL, focusing on setup, best practices, ensuring data consistency, and addressing common challenges.
What Are the Key Considerations for Using Workerman in a Serverless Architecture?Mar 18, 2025 pm 04:12 PMThe article discusses integrating Workerman into serverless architectures, focusing on scalability, statelessness, cold starts, resource management, and integration complexity. Workerman enhances performance through high concurrency, reduced cold sta
How to Build a High-Performance E-Commerce Platform with Workerman?Mar 18, 2025 pm 04:11 PMThe article discusses building a high-performance e-commerce platform using Workerman, focusing on its features like WebSocket support and scalability to enhance real-time interactions and efficiency.
What Are the Advanced Features of Workerman's WebSocket Server?Mar 18, 2025 pm 04:08 PMWorkerman's WebSocket server enhances real-time communication with features like scalability, low latency, and security measures against common threats.
How to Use Workerman for Building Real-Time Analytics Dashboards?Mar 18, 2025 pm 04:07 PMThe article discusses using Workerman, a high-performance PHP server, to build real-time analytics dashboards. It covers installation, server setup, data processing, and frontend integration with frameworks like React, Vue.js, and Angular. Key featur


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

Dreamweaver Mac version
Visual web development tools

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function

Atom editor mac version download
The most popular open source editor

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

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






