本文目录一览:
- 1、win2003 php iis伪静态规则 麻烦各位了
- 2、php 伪静态是什么意思?怎么做?
- 3、php中伪静态规则list.php?id=xx&page=xx
- 4、求php页面伪静态规则写法
- 5、php伪静态规则
- 6、thinkphp 伪静态 nginx 规则怎么设置
win2003 php iis伪静态规则 麻烦各位了
1.此技术称为htaccess 伪静态的应用,是在2008年左右流行起来,其优点,在于防注入,加载速度快之特点。
2.RewriteBase / 从网站根目录起
RewriteCond 定义规则生效的条件
3.你提到的$1,$2是指,产生的第一个条件,第二个条件的相配项。
4.rewrite ^(.*)/archiver/((fid|tid)-[w-]+.html)$ $1/archiver/index.php?$2 last;
RewriteCond %{QUERY_STRING} ^(.*)$
RewriteRule ^space-(username|uid)-(.+)\.html$ home.php?mod=space$1=$2%1
RewriteCond %{QUERY_STRING} ^(.*)$
RewriteRule ^([a-z]+)-(.+)\.html$ $1.php?rewrite=$2%1 [L]
php 伪静态是什么意思?怎么做?
说简单点,伪静态,就是用户看到的地址以html.htm等静态页面的链接,实际还是动态页过,通过一些规则配置,显示在浏览器中的地址变为静态而以。
举个简单的例子:
比如你的页面为/index.php
通过伪静态显示在浏览器是index.html
php中伪静态规则list.php?id=xx&page=xx
RewriteEngine on
RewriteRule ^list_([0-9]+)_([0-9]+).html$ /list.php?id=$1page=$2 [L]
求php页面伪静态规则写法
htaccess规则:
IfModule mod_rewrite.c
RewriteEngine on
RewriteOptions MaxRedirects=1
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-l
RewriteRule ^/([0-9]*).html$ /play.php?id=$1
/IfModule
规则是把/play.php?id=12175781伪静态成/12175781.html
php伪静态规则
前面的是伪静的地址,后面隔开的就是真实的地址了.
^/(.*?)/ /category.php?name=$1
用小括号括起来的第几个后面的参数$n,就显示他的原值了
^/([a-z]*)/([a-z]*)/([a-z]*)/ /category.php?p1=$1p2=$2p3=$3
这样该明白了吧...括号里写的就是正则表达式.参数是前后对应的.
thinkphp 伪静态 nginx 规则怎么设置
关于nginx的伪静态设置(案例)
server {
listen 80;
server_name localhost;
index index.html index.htm index.php;
root /alidata/www/;
location / {
if (!-e $request_filename){
rewrite ^/(.*)$ /index.php?s=/$1 last;
}
}
location ~ .*\.(php|php5)?$
{
#fastcgi_pass unix:/tmp/php-cgi.sock;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
include fastcgi.conf;
# 以下是为了让Nginx支持PATH_INFO
set $path_info "";
set $real_script_name $fastcgi_script_name;
if ($fastcgi_script_name ~ "^(.+?\.php)(/.+)$") {
set $real_script_name $1;
set $path_info $2;
}
fastcgi_param script_FILENAME $document_root$real_script_name;
fastcgi_param script_NAME $real_script_name;
fastcgi_param PATH_INFO $path_info;
fastcgi_connect_timeout 120;
fastcgi_send_timeout 120;
fastcgi_read_timeout 120;
fastcgi_buffers 8 128K;
fastcgi_buffer_size 128K;
}
location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
{
expires 30d;
}
location ~ .*\.(js|css)?$
{
expires 1h;
}
#伪静态规则
access_log /alidata/log/nginx/access/default.log;
}