Home  >  Article  >  Backend Development  >  About PHP pseudo-static Rewrite settings, php pseudo-rewrite_PHP tutorial

About PHP pseudo-static Rewrite settings, php pseudo-rewrite_PHP tutorial

WBOY
WBOYOriginal
2016-07-13 10:21:571003browse

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

14b0679c965a37485d7a49e1ff87240fRewriteEngine On

RewriteRule ^(.*)/classlist/(.*)$ $1/class_list.php?type=$2

2071f931c9870be1bebed0bdda8305e7

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.

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/852743.htmlTechArticle 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 expression specification of the Perl language. Usually help us...
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn