Thinkphp设置伪静态
Nginx环境:在nginx.conf文件中添加
location / {
if (!-e $request_filename){
rewrite ^(.*)$ /index.php?s=$1 last; break;
}
}
如果网站部署在二级目录,则在代码中加入文件路径
location /cn/ {
if (!-e $request_filename){
rewrite ^/cn/(.*)$ /cn/index.php?s=/$1 last;
}
}
Apache环境:
在public外创建.htaccess内容如下:(更改访问入口到public)
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteBase /
RewriteCond %{REQUEST_URI} !^/public/
RewriteRule ^(.*)$ public/$1?Rewrite [L,QSA]
</IfModule>
在public里创建.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>
评论已关闭