Apache rewrite_module module usage tutorial

WBOY
Release: 2016-07-29 08:37:24
Original
969 people have browsed it

Change the address form of
[url]http://wwww.aaaaaaaaa.com/bbb.php?id=888[/url]
to
[url]http://wwww.aaaaaaaaa.com/888.htm[ /url]
or
[url]http://wwww.aaaaaaaaa.com/yourname/888.htm[/url]
Of course it can be changed according to your requirements.
APACHE’s MOD_rewrite module.
You can watch a demo A PHP learning forum
[url]http://www.phpx.com/happy/[/url]
The layout and posts of this forum use this technology to make the address static. But it is fake.
This What's so good about technology?
You can let Baidu, Google, etc. to include all pages of your site.
The income address is your fake static address. Of course, others can't tell that you are fake. And this technology hides the program executed behind you.
You can rewrite
/soft/1234.html and pass it to soft.php?id=1234
Of course you change the name to softxfewafew.php?id=1234
On the surface it is still soft/1234.html, but you execute it internally in APACHE The file you rewrite.
It can fundamentally prevent others from invading the program itself.
I will write below how to rewrite it. It is divided into two types: WINDOWS and LIUNX
Both operations
httpd in the CONF folder in the APACHE installation folder .conf
After opening, find
#LoadModule rewrite_module "modules/mod_rewrite.so"
Remove #.
Then find the virtual host configuration
Add
RewriteEngine On to the virtual host
RewriteRule ^/soft/([0-9] +).html$ /soft.php?id=$1
//Explanation
//WWW.corn.COM/SOFT/1234.HTML
//Rewritten to
//WWW.corn.COM/soft.php? id=1234
//The ID here can be changed. If you give it 1, it means passing 1
RewriteRule ^/([0-9]+).html$ /soft.php?id=$1
//Explanation
//WWW .corn.COM/1234.HTML
//Rewrite to
//WWW.corn.COM/soft.php?id=1234
RewriteRule ^/([0-9]+)_([0-9]+ ).html$ /soft.php?id=$1&catid=$2
//Explanation
//WWW.corn.COM/1234_2222.HTML
//Rewritten to
//WWW.corn.COM/soft.php? id=1234&catid=2222
Of course you can change it however you want!
This is under WIN.
It is the same under LIUNX but you need to add
Start
End
Rewrite is added in Virtual host setting.
If there is no virtual host, add it at the end!

The above introduces the tutorial on using the apache rewrite_module module, including various aspects. I hope it will be helpful to friends who are interested in PHP tutorials.

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!