search
HomeBackend DevelopmentPHP TutorialA brief discussion on implementing pseudo-static in PHP_PHP tutorial

/**********************
Title: A brief discussion on pseudo-static implementation in PHP
Author:insun
Blog:http://yxmhero1989.blog.163.com
Reference:
PHP implements pseudo-static url http://blog.78999.org/php_sql_asp/php-rewrite.html

php pseudo-static (url rewrite) apache configuration http://hi.baidu.com/%B9%D6%CA%AF/blog/item/2659b6af548923d57cd92ab9.html


Three ways to implement PHP pseudo-static pages: http://www.BkJia.com/kf/201108/100056.html


Implementation of friendly URL (recommended for vomiting blood) http://www.BkJia.com/kf/201006/49208.html

The specific implementation method of pseudo-static page in PHP http://www.BkJia.com/kf/201108/100058.html

PHP pseudo-static and anti-injection http://www.BkJia.com/Article/201108/100059.html

Php parameter passing and more reasonable arrangements after PHP obtains url parameters http://hi.baidu.com/wd1314521/blog/item/3af604822f1938b70df4d2e3.html

Two methods of php to implement pseudo-static pages (including two methods of url rewriting http://hi.baidu.com/newyorkmen/blog/item/f998131ae4121b0d34fa4167.html/cmtid/ 6becf7c0d5fd6d38e4dd3b08 PHP page implementation static explanation and detailed code http://hi.baidu.com/newyorkmen/blog/item/f387e3b723dddac437d3ca66.html

*/
I recently interned in a company. I used a PHP crawler to crawl website pages and save them to the database. Then I wrote a website to call the database, and then performed SEO, requiring collection, remote data localization, pseudo-static, keyword optimization, no dead links and no islands. ; After finishing, you can join the project team.
The pseudo-static implementation of PHP is actually for SEO (Search Engine Optimization), which means that spiders like Google and Baidu don't like dynamic pages, so when you display them, they are displayed as .html or directories. In fact, it is a php file on the server side. In other words, search engines do not like pages like /page.php?id=4, but like pages like /4.html, which are very friendly to them (conducive to inclusion). Of course, you will not directly create N pieces of html page.
one. So the easiest way
URL rewriting (pseudo-static) under Apache+PHP
1. Check if apache supports mod_rewrite

Look for LoadModule rewrite_module modules/mod_rewrite.so in apache's httpd.conf and remove the # in front of it (if there is one, uncomment it). Under Linux, it is recommended to use the Xampp installation package, which The LoadModule has basically been uncommented, so there is generally no need to change it.
Then use phpinfo() to check the environment configuration and see if mod_rewrite is supported. As shown in the picture:

浅谈PHP实现伪静态 - InSun - Minghacker is Insun

2. Find Options FollowSymLinks in http.conf and change the AllowOverride None to AllowOverride All.
At this time, the troops are divided into two groups. Those with http.conf permissions can add url rewrite rules after http.conf
Such as

RewriteEngine On
RewriteRule ^(.*)/([0-9]{1,}).html$ $1/page.php?id=$2

The second way is to create an .htaccess file in the code root directory. This file is relatively simple to create. There are three methods. The simplest is of course to create 1.htaccess and then open it in Notepad and save it as .htaccess. The other is to rename and ftp under cmd. Software modifications.
3.rewrite rules
Just look at an example and you’ll understand

RewriteEngine On
RewriteRule ^(.*)/([0-9]{1,}).html$ $1/page.php?id=$2

$ is the terminator, write a regular expression in front, $1 gets the first sub-pattern (the stuff inside the parentheses), $2 gets the second sub-pattern stuff.
Friendly reminder ^ is the beginning, don’t forget to add
If there are 2 parameters, it is very simple and you can handle it yourself.
That is to say, if the browser displays 4.html (the link in your file is written as .html), the actual call is page.php?id=4, so that the input fields of the browser are all html, achieving Pseudo-static.
Of course, if you rewrite different regular rules, the displayed url will be different, whichever you like.
Don't add semicolons when you encounter multiple lines. The following is correct:

RewriteEngine On
RewriteRule ^(.*)/([0-9]{1,}).html$ $1/page.php?id=$2
RewriteRule ^(.*)/index.html$ $1/index.php
RewriteRule ^(.*)/wenzhang.html$ $1/wenzhang.php
RewriteRule ^(.*)/gushi.html$ $1/gushi.php
RewriteRule ^(.*)/sanwen.html$ $1/sanwen.php
RewriteRule ^(.*)/zawen.html$ $1/zawen.php
RewriteRule ^(.*)/shige.html$ $1/shige.php
RewriteRule ^(.*)/riji.html$ $1/riji.php
RewriteRule ^(.*)/xiaoshuo.html$ $1/xiaoshuo.php
RewriteRule ^(.*)/contact.html$ $1/contact.php


<code style="line-height: 22px"><font face="新宋体">The overview is the URL rewriting engine and specifying some rewriting rules<code style="line-height: 22px"><code style="line-height: 22px"><font face="新宋体">综述就是网址重写引擎和指定一些重写规则</font>., try Faking URL Suffix (fake URL suffix)
, it looks very static, which improves security and SEO friendliness. 4. Restart apache.
Windows httpd.conf is easy to find, it is in the conf directory (I mean if you don’t use the integration package)
Linux has httpd.conf in the opt/lampp/etc directory (generally, it is recommended to use Xampp according to the package under Linux and install it in the opt directory)
Perform the same work as above and restart and it will be ok
login as: root
Server refused our key
root@XXXXX.com's password:
Last login: Thu Jul 21 14:26:26 2011 from 112.65.219.75
[root@XXXXX ~]# who
root pts/0 2011-07-21 14:32 (112.65.219.75)
[root@XXXXX ~]# /opt/lampp/lampp restart
Stopping XAMPP for Linux 1.6.4...
XAMPP: Stopping Apache with SSL...
XAMPP: Stopping MySQL...
XAMPP: Stopping ProFTPD...
XAMPP stopped.
Starting XAMPP for Linux 1.6.4...
XAMPP: Starting Apache with SSL (and PHP5)...
XAMPP: Starting MySQL...
XAMPP: Starting ProFTPD...
XAMPP for Linux started.
Just wait.
5. Partial code guidance:

echo "";
$i=$row['id'];//The id column in the database table insun4, for. . . .
echo " ".$row['title']." ";
//echo " ".$row['title']." ";
//echo " ".$row['description']." "; 
echo " ".$row['description']." ";
echo "";
?>

include 'config.php';
set_time_limit(0);//Prevent timeout errors from being displayed.
mysql_query("set names'gbk'");//utf8
//$url = "http://www.jj59.com/";
$gid = $_GET['id'];
$query="select * from insun4 where id = $gid";//Selective output using like.where link like'http://www.jj59.com/yuanchuang/%'
//echo  $query;
$queryresult=mysql_query($query) or die("查询数据失败");//执行查询
//echo var_dump($queryresult);

while($row = mysql_fetch_array($queryresult)){
    echo ($row['content'])."
";
}
?>


RewriteEngine On
RewriteRule ^(.*)/([0-9]{1,}).html$ $1/page.php?id=$2
RewriteRule ^(.*)/index.html$ $1/index.php
RewriteRule ^(.*)/wenzhang.html$ $1/wenzhang.php
RewriteRule ^(.*)/gushi.html$ $1/gushi.php
RewriteRule ^(.*)/sanwen.html$ $1/sanwen.php
RewriteRule ^(.*)/zawen.html$ $1/zawen.php
RewriteRule ^(.*)/shige.html$ $1/shige.php
RewriteRule ^(.*)/riji.html$ $1/riji.php
RewriteRule ^(.*)/xiaoshuo.html$ $1/xiaoshuo.php
RewriteRule ^(.*)/contact.html$ $1/contact.php


二,看到网上有2-3个方法,都是写个Url_rewrite函数,然后require的,感觉不好就不推荐大家了,大家可以去搜索下。
一般都是借助于apache,nginx,htaccess等,很少用php来实现url的静态化,用php来实现静态化比较麻烦。


如果出现下面这样,说明你没配置好。

浅谈PHP实现伪静态 - InSun - Minghacker is Insun
如果出现下面这样,说明你配置好了,只是rewrite规则写的不对,检查下好了。

浅谈PHP实现伪静态 - InSun - Minghacker is Insun
If the following appears, congratulations.

浅谈PHP实现伪静态 - InSun - Minghacker is Insun
浅谈PHP实现伪静态 - InSun - Minghacker is Insun

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/478695.htmlTechArticle/************************ Title: Brief Talk PHP implements pseudo-static Author:insun Blog:http://yxmhero1989.blog.163.com Reference: php implements pseudo-static URL http://blog.78999.org/php_sql_asp/php-re...
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
php怎么把负数转为正整数php怎么把负数转为正整数Apr 19, 2022 pm 08:59 PM

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

php怎么实现几秒后执行一个函数php怎么实现几秒后执行一个函数Apr 24, 2022 pm 01:12 PM

实现方法:1、使用“sleep(延迟秒数)”语句,可延迟执行函数若干秒;2、使用“time_nanosleep(延迟秒数,延迟纳秒数)”语句,可延迟执行函数若干秒和纳秒;3、使用“time_sleep_until(time()+7)”语句。

php怎么除以100保留两位小数php怎么除以100保留两位小数Apr 22, 2022 pm 06:23 PM

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

php字符串有没有下标php字符串有没有下标Apr 24, 2022 am 11:49 AM

php字符串有下标。在PHP中,下标不仅可以应用于数组和对象,还可应用于字符串,利用字符串的下标和中括号“[]”可以访问指定索引位置的字符,并对该字符进行读写,语法“字符串名[下标值]”;字符串的下标值(索引值)只能是整数类型,起始值为0。

php怎么根据年月日判断是一年的第几天php怎么根据年月日判断是一年的第几天Apr 22, 2022 pm 05:02 PM

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

php怎么读取字符串后几个字符php怎么读取字符串后几个字符Apr 22, 2022 pm 08:31 PM

在php中,可以使用substr()函数来读取字符串后几个字符,只需要将该函数的第二个参数设置为负值,第三个参数省略即可;语法为“substr(字符串,-n)”,表示读取从字符串结尾处向前数第n个字符开始,直到字符串结尾的全部字符。

php怎么替换nbsp空格符php怎么替换nbsp空格符Apr 24, 2022 pm 02:55 PM

方法:1、用“str_replace("&nbsp;","其他字符",$str)”语句,可将nbsp符替换为其他字符;2、用“preg_replace("/(\s|\&nbsp\;||\xc2\xa0)/","其他字符",$str)”语句。

php怎么判断有没有小数点php怎么判断有没有小数点Apr 20, 2022 pm 08:12 PM

php判断有没有小数点的方法:1、使用“strpos(数字字符串,'.')”语法,如果返回小数点在字符串中第一次出现的位置,则有小数点;2、使用“strrpos(数字字符串,'.')”语句,如果返回小数点在字符串中最后一次出现的位置,则有。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!