Change the address form of
[url]http://wwww.aaaaaaaaa.com/...
to
[url]http://wwww.aaaaaaaaa.com/...
or
[url]http:/ /wwww.aaaaaaaaa.com/...
Of course it can be changed according to your requirements.
APACHE’s MOD_rewrite module.
You can watch a demonstration on a PHP learning forum
[url]http://www.phpx.com /happy/...
The layout and posts of this forum use this technology to make the address static. But it is fake.
What is so good about this technology?
It can allow Baidu, Google, etc. to include all pages of your site.
The income address is your fake static address. Of course, others cannot tell that you are fake. Moreover, 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 APACHE internally executes the file you rewrote.
It can fundamentally prevent others from intruding from the program itself.
Below I will write how to rewrite. It is divided into two types: WINDOWS and LIUNX. Both are operated by httpd.conf in the CONF folder in the APACHE installation folder. After opening it, find
#LoadModule rewrite_module "modules/mod_rewrite.so"
Remove #.
Then find the virtual host configuration
Add
RewriteEngine On in the virtual host
RewriteRule ^/soft/([0-9]+).html$ /soft.php?id=$1
//Explanation
/ /WWW.corn.COM/SOFT/1234.HTML
//Rewritten as
//WWW.corn.COM/soft.php?id=1234
//The ID here can be changed. If you give it 1, it will pass 1
RewriteRule ^/([0-9]+).html$ /soft.php?id=$1
//Explanation
//WWW.corn.COM/1234.HTML
//Rewritten 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
Rewrite is added to the virtual host settings.
If there is no virtual host, add it at the end!
The above introduces the downloading of rewrite using the apache module rewrite_module, including the content of downloading rewrite. I hope it will be helpful to friends who are interested in PHP tutorials.