


About PHP pseudo-static Rewrite settings, php pseudo-rewrite_PHP tutorial
Regarding PHP pseudo-static Rewrite settings, the main function of php pseudo-rewrite
Rewirte is to realize URL jump and hide the real address, based on the regular rules of Perl language Expression specification. We usually help us achieve pseudo-static, pseudo-directory, domain name jump, prevent hot links, etc. 1. Apache configuration: 1. Support httpd.conf configuration 2. Support directory .htaccess configuration (a "distributed configuration" file for virtual space, the space provider does not allow modification of the Apache configuration file) Enable Rewrite (httpd.conf) (Sometimes there will be problems with Options Indexes FollowSymLinks, just configure Options all) LoadModule rewrite_module modules/mod_rewrite.so Enable .htaccess AllowOverride None Modified to: AllowOverride All 2. mod_rewrite Rules: For example: RewriteEngine on - RewriteRule ^/test([0-9]*).html$ /test.php?id=$1 -> Refers to accessing test and adding any field.html can jump to test.php. The regular matching fields are stored Match $1 in virtual memory 3. mod_rewriteRulesModifier 1) R forces external redirection 2) F disables URL and returns 403 HTTP status code. 3) G forces the URL to be GONE and returns 410 HTTP status code. 4) P forces the use of proxy forwarding. 5) L indicates that the current rule is the last rule and stops analyzing the rewriting of future rules. 6) N runs the rewriting process starting from the first rule again. 7) C is associated with the next rule If the rule matches, it will be processed normally, and the following modifiers are invalid 8) T=MIME-type(force MIME type) force MIME type 9) NS is only used for non-internal subrequests 10) NC is not case sensitive 11) QSA append request string 12) NE no longer outputs escaped special characters %3d$1 is equivalent to =$1 For example: RewriteRule ^/new([0-9]*)/$ /new. php?id=$1 [R] Simple small example: Easy to achieve~
1 2 |
|
Apache configuration Rewrite problem PHP|Pseudo-static|RewriteRule
The virtual host is a Linux system, and the running environment of the website program is php+mysql. How to set up pseudo-static? ?
Hello, you have to set up pseudo-static according to your website program and WEB server environment. For example, if you use LNMP environment and the PHP program you use is DZ2.5, then your pseudo-static can be:
rewrite ^( [^\.]*)/topic-(.+)\.html$ $1/portal.php?mod=topic&topic=$2last;
rewrite ^([^\.]*)/article-([0 -9]+)-([0-9]+)\.html$ $1/portal.php?mod=view&aid=$2&page=$3 last;
rewrite ^([^\.]*)/forum- (\w+)-([0-9]+)\.html$ $1/forum.php?mod=forumdisplay&fid=$2&page=$3 last;
rewrite ^([^\.]*)/thread-( [0-9]+)-([0-9]+)-([0-9]+)\.html$ $1/forum.php?mod=viewthread&tid=$2&extra=page%3D$4&page=$3 last ;
rewrite ^([^\.]*)/group-([0-9]+)-([0-9]+)\.html$ $1/forum.php?mod=group&fid=$2&page =$3 last;
rewrite ^([^\.]*)/space-(username|uid)-(.+)\.html$ $1/home.php?mod=space&$2=$3 last;
rewrite ^([^\.]*)/blog-([0-9]+)-([0-9]+)\.html$ $1/home.php?mod=space&uid=$2&do=blog&id= $3 last;
rewrite ^([^\.]*)/(fid|tid)-([0-9]+)\.html$ $1/index.php?action=$2&value=$3 last;
rewrite ^([^\.]*)/([a-z]+[a-z0-9_]*)-([a-z0-9_\-]+)\.html$ $1/plugin.php? id=$2:$3 last;
if (!-e $request_filename) {
return 404;
}
If you have any questions, please +Q+group 222802357 to find the group owner.

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



The PHP Client URL (cURL) extension is a powerful tool for developers, enabling seamless interaction with remote servers and REST APIs. By leveraging libcurl, a well-respected multi-protocol file transfer library, PHP cURL facilitates efficient execution of various network protocols, including HTTP, HTTPS, and FTP. This extension offers granular control over HTTP requests, supports multiple concurrent operations, and provides built-in security features.

Alipay PHP...

Article discusses late static binding (LSB) in PHP, introduced in PHP 5.3, allowing runtime resolution of static method calls for more flexible inheritance.Main issue: LSB vs. traditional polymorphism; LSB's practical applications and potential perfo

JWT is an open standard based on JSON, used to securely transmit information between parties, mainly for identity authentication and information exchange. 1. JWT consists of three parts: Header, Payload and Signature. 2. The working principle of JWT includes three steps: generating JWT, verifying JWT and parsing Payload. 3. When using JWT for authentication in PHP, JWT can be generated and verified, and user role and permission information can be included in advanced usage. 4. Common errors include signature verification failure, token expiration, and payload oversized. Debugging skills include using debugging tools and logging. 5. Performance optimization and best practices include using appropriate signature algorithms, setting validity periods reasonably,

Article discusses essential security features in frameworks to protect against vulnerabilities, including input validation, authentication, and regular updates.

Sending JSON data using PHP's cURL library In PHP development, it is often necessary to interact with external APIs. One of the common ways is to use cURL library to send POST�...

The article discusses adding custom functionality to frameworks, focusing on understanding architecture, identifying extension points, and best practices for integration and debugging.

An official introduction to the non-blocking feature of ReactPHP in-depth interpretation of ReactPHP's non-blocking feature has aroused many developers' questions: "ReactPHPisnon-blockingbydefault...
