


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~
<span>RewriteEngine on RewriteRule </span>^/in(.*).html$ /index.php
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

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

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 PHP, password_hash and password_verify functions should be used to implement secure password hashing, and MD5 or SHA1 should not be used. 1) password_hash generates a hash containing salt values to enhance security. 2) Password_verify verify password and ensure security by comparing hash values. 3) MD5 and SHA1 are vulnerable and lack salt values, and are not suitable for modern password security.

PHP and Python each have their own advantages, and choose according to project requirements. 1.PHP is suitable for web development, especially for rapid development and maintenance of websites. 2. Python is suitable for data science, machine learning and artificial intelligence, with concise syntax and suitable for beginners.

PHP is widely used in e-commerce, content management systems and API development. 1) E-commerce: used for shopping cart function and payment processing. 2) Content management system: used for dynamic content generation and user management. 3) API development: used for RESTful API development and API security. Through performance optimization and best practices, the efficiency and maintainability of PHP applications are improved.

PHP type prompts to improve code quality and readability. 1) Scalar type tips: Since PHP7.0, basic data types are allowed to be specified in function parameters, such as int, float, etc. 2) Return type prompt: Ensure the consistency of the function return value type. 3) Union type prompt: Since PHP8.0, multiple types are allowed to be specified in function parameters or return values. 4) Nullable type prompt: Allows to include null values and handle functions that may return null values.

PHP is still dynamic and still occupies an important position in the field of modern programming. 1) PHP's simplicity and powerful community support make it widely used in web development; 2) Its flexibility and stability make it outstanding in handling web forms, database operations and file processing; 3) PHP is constantly evolving and optimizing, suitable for beginners and experienced developers.

PHP is mainly procedural programming, but also supports object-oriented programming (OOP); Python supports a variety of paradigms, including OOP, functional and procedural programming. PHP is suitable for web development, and Python is suitable for a variety of applications such as data analysis and machine learning.

PHP and Python have their own advantages and disadvantages, and the choice depends on project needs and personal preferences. 1.PHP is suitable for rapid development and maintenance of large-scale web applications. 2. Python dominates the field of data science and machine learning.

Using preprocessing statements and PDO in PHP can effectively prevent SQL injection attacks. 1) Use PDO to connect to the database and set the error mode. 2) Create preprocessing statements through the prepare method and pass data using placeholders and execute methods. 3) Process query results and ensure the security and performance of the code.
