.htaccess文件提供了针对目录改变配置的方法, 是Apache服务器中的一个配置文件,它负责相关目录下的网页配置。通过htaccess文件,可以帮我们实现:网页301重定向、自定义404错误页面、改变文件扩展名、允许/阻止特定的用户或者目录的访问、禁止目录列表、配置默认文档等功能。
伪静态实际上是利用PHP把当前地址解析成另外一种方法进行访问网站!要学伪静态规则的写法,你必须得懂一点正则。
一、正则表达式教程
简单罗列如下:
1
2
3
4
5
6
7
8
9
10
11
12
13
. 换行符以外的所有字符
\w 匹配字母或数字或下划线或汉字
\s 匹配任意的空白符
\d 匹配数字
\b 匹配单词的开始或结束
^ 匹配字符串的开始
$ 匹配字符串的结束
* 重复零次或更多次
+ 重复一次或更多次
? 重复零次或一次
{n} 重复n次
{n,}重复n次或更多次
{n,m} 重复n到m次
二、常见的.htaccess应用举例
1 防止盗链,如果来得要访问jpe jpg bmp png结尾的url 用户不是来自我们的网站,那么让他看一张我们网站的展示图片。
1
2
RewriteEngine On
RewriteCond %{HTTP_REFERER} !^http://(.+.)?mysite.com/ [NC]RewriteCond %{HTTP_REFERER} !^$RewriteRule .*.(jpe?g|gif|bmp|png)$ /images/nohotlink.jpg [L]
2 网站升级的时候,只有特定IP才能访问,其他的用户将看到一个升级页面
1
2
3
RewriteEngine on
RewriteCond %{REQUEST_URI} !/upgrade.html$RewriteCond %{REMOTE_HOST} !^24\.121\.202\.30
RewriteRule $ http://www.linuxidc.com/upgrade.html [R=302,L]
3 把老的域名转向新域名
1
2
3
# redirect from old domain to new domain
RewriteEngine On
RewriteRule ^(.*)$http://www.yourdomain.com/$1[R=301,L]
三、常用示例
比如:http://www.yzzmf.com/index.html ->http://www.yzzmf.com/index.php
1
2
RewriteEngine On
RewriteRule index.html index.php
比如:http://www.yzzmf.com/test8.html ->http://www.yzzmf.com/test.php?id=8
1
RewriteRule ^test([0-9]*).html$ test.php?id=$1
比如:http://www.yzzmf.com/cat-1-3.html ->http://www.yzzmf.com/cat.php?id1=1&id2=3
1
RewriteRule ^cat-([0-9]+)-([0-9]+)\.html$ cat.php?id1=$1&id2=$2
比如:http://www.yzzmf.com/cat-zbc2ac-3-5.html ->http://www.yzzmf.com/cat.php?id0=zbc2ac&id1=3&id2=5
1
RewriteRule ^cat-([a-zA-Z0-9\-]*)-([0-9]+)-([0-9]+)\.html$ cat.php?id0=$1&id1=$2&id2=$3
比如:http://www.yzzmf.com/cat1-4-3-8.html ->http://www.yzzmf.com/cat1.php?id1=4&id2=3&id3=8
1
RewriteRule ^cat1-([0-9]+)-([0-9]+)-([0-9]+)\.html$ cat1.php?id1=$1&id2=$2&id3=$3
比如:http://www.yzzmf.com/cat5/ ->http://www.yzzmf.com/cat.php?id1=5
1
RewriteRule ^cat([0-9]*)/$ cat.php?id1=$1
比如:http://www.yzzmf.com/catm6/3/ ->http://www.yzzmf.com/catm.php?id1=6&id2=3
1
RewriteRule ^catm([0-9]*)/([0-9]*)/$ catm.php?id1=$1&id2=$2
希望对你有所帮助!
你是不是在conf文件中配置了特定的站点?那就应该写到站点的配置里面吧?另外:
Options FollowSymLinks
AllowOverride None
下面再加:
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
location /{ if (!-e $request_filename) {rewrite ^/(.*)$ /index.php?$1 last }}阁下的代码意在将路径中的index.php隐藏,同时还得保证像图像CSS等文件不被规则所限制,那么可参考我写的这个:if (!-e $request_filename)//此句是指当访问的是URL不是一个切实存在的文件时,则执行下面的重写规则。至少阁下还有一句:
RewriteCond %{REQUEST_URI} ^system.*它的作用是什么?是要将system开头的URL都直接访问不经过重写规则还是禁止访问?
满意请采纳。
欢迎分享,转载请注明来源:夏雨云
评论列表(0条)