Home > PHP Framework > ThinkPHP > Clever use of .htaccess files in thinkphp

Clever use of .htaccess files in thinkphp

藏色散人
Release: 2021-08-30 09:02:09
forward
2669 people have browsed it

下面由thinkphp框架教程栏目给大家介绍thinkphp中.htaccess文件的巧妙运用,希望对需要的朋友有所帮助!

1、重定向(301跳转)

相信这个功能,大家都不陌生,为了集中网站域名的权重,通常会将不带www的域名301跳转到带www的域名上,比如说某站的域名xxx.com就会自动的跳转到www.xxx.com上来,这样做的好处就是,搜索引擎会集中不带www的域名的页面权重到带www的网址页面上来,如果没有做301重定向,且带www和不带www的域名都能访问同一个网站,那么在搜索引擎优化方面将起到分散权重的弊端!具体操作:(将域名替换为自己的粘贴到.htaccess文件内即可)

RewriteEngine On  
RewriteCond %{HTTP_HOST} !^xxx.com$ [NC]  
RewriteRule ^(.*)$ http://www.xxx.com/$1 [L,R=301]
Copy after login

隐藏入口文件

在ThinkPHP5.0中,出于优化的URL访问原则,还支持通过URL重写隐藏入口文件,下面以Apache为例说明隐藏应用入口文件index.php的设置。

下面是Apache的配置过程,可以参考下:

1、httpd.conf配置文件中加载了mod_rewrite.so模块
2、AllowOverride None 将None改为 All
3、在应用入口文件同级目录添加.htaccess文件,内容如下:

<IfModule mod_rewrite.c>
Options +FollowSymlinks -Multiviews
RewriteEngine on

RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]
</IfModule>
Copy after login

2、防盗链功能

确实,.htaccess文件可以开启防盗链的功能,什么叫防盗链?防盗链就是节省网站的流量,将网站内的文件、图片等都仅能在自己的网站域名上显示,避免其他网站调用自己网站文件而流失大量的流量,对于很多小站长来说,主机都是有流量限制的 。具体操作:

RewriteEngine On  
RewriteCond %{HTTP_REFERER} !^http://(.+\.)?xxx\.com/ [NC]  
RewriteCond %{HTTP_REFERER} !^$  
# wordpress主题下载站提醒:/notlink.png为盗链显示的图片,建议使用小尺寸的,以免因为图片太大,二次浪费!  
RewriteRule .*\.(jpe?g|gif|bmp|png)$ /notlink.png [L]
Copy after login

推荐:《最新的10个thinkphp视频教程

The above is the detailed content of Clever use of .htaccess files in thinkphp. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:segmentfault.com
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