本文目录一览:
如何配置thinkphp的伪静态重写
满足thinkphp伪静态(url重写)条件:
1、 服务器开启url_rewrite功能,linux空间的php虚拟主机只需要开启apache的mod_rewriet,如果是iis6.0就要安装ISAPI Rewrite模块,apache只要开启Mod_rewrite功能就可以了。无忧主机是linux系统的空间,开通空间默认支持。
2、 Linux空间编辑.htaccess文件,windows空间编辑httpd.ini文件。
thinkphp如何编写.htaccess文件?
无忧主机()编写的thinkphp伪静态正则表达式.htaccess文件如下:
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]
请将上面正则表达式,保存为.htaccesss文件,并放到thinkphp项目入口文件同级目录下。并且修改数据库配置(config.php)文件使网站支持url重写功能,加入代码:define(‘URL_REWRITE’,2);-thinkphprewriteiis
thinkphp iis 如何去掉index.php
[ IIS ]
如果你的服务器环境支持ISAPI_Rewrite的话,可以配置httpd.ini文件,添加下面的内容:
RewriteRule (.*)$ /index\.php\?s=$1 [I]
在IIS的高版本下面可以配置web.Config,在中间添加rewrite节点:
rewrite
rules
rule name="OrgPage" stopProcessing="true"
match url="^(.*)$" /
conditions logicalGrouping="MatchAll"
add input="{HTTP_HOST}" pattern="^(.*)$" /
add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" /
add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" /
/conditions
action type="Rewrite" url="index.php/{R:1}" /
/rule
/rules
/rewrite
参考文档:
thinkphp 怎么配置rewrite
IIS环境
如果你的服务器环境支持ISAPI_Rewrite的话,可以配置httpd.ini文件,添加下面的内容:
RewriteRule (.*)$ /index\.php\?s=$1 [I]
在IIS的高版本下面可以配置web.Config,在中间添加rewrite节点:
rewrite
rules
rule name="OrgPage" stopProcessing="true"
match url="^(.*)$" /
conditions logicalGrouping="MatchAll"
add input="{HTTP_HOST}" pattern="^(.*)$" /
add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" /
add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" /
/conditions
action type="Rewrite" url="index.php/{R:1}" /
/rule
/rules
/rewrite
Nginx环境
在Nginx低版本中,是不支持PATHINFO的,但是可以通过在Nginx.conf中配置转发规则实现:
location / { // …..省略部分代码
if (!-e $request_filename) {
rewrite ^(.*)$ /index.php?s=$1 last;
break;
}
}
其实内部是转发到了ThinkPHP提供的兼容模式的URL,利用这种方式,可以解决其他不支持PATHINFO的WEB服务器环境。
如果你的ThinkPHP安装在二级目录,Nginx的伪静态方法设置如下,其中youdomain是所在的目录名称。
location /youdomain/ {
if (!-e $request_filename){
rewrite ^/youdomain/(.*)$ /youdomain/index.php?s=$1 last;
}
}