yii2 url美化问题
老师你好,nginx服务器的话,去掉index.php?的重写代码怎么写?
老师你好,nginx服务器的话,去掉index.php?的重写代码怎么写?
2017-08-17
#这是我的配置文件你可以试一试
server
{
listen 80;
server_name blog.app; #绑定域名
index index.htm index.html index.php; #默认文件
root /Users/guiyun/Code/blog.app/frontend/web; #网站根目录
#rewrite ^(.*)$ https://$host$1 permanent;
location / {
# 这里使用try_files进行url重写,不用rewrite了。
try_files $uri $uri/ /index.php?$query_string;
}
location ~* \.php$ {
fastcgi_index index.php;
fastcgi_pass 127.0.0.1:9000;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param SCRIPT_NAME $fastcgi_script_name;
}
location ~ /\.ht {
deny all;
}
}
举报