时间:2021-07-01 10:21:17 帮助过:4人阅读
Options +FollowSymLinks
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]
###########################华丽丽的分界线#################
#上面是原来htaccess中的url重写配置(apache环境),thinkphp项目,有xx、yy、zz三个分组,xx是默认分组
#下面是我要配置的虚拟机
##########################################################
server {
listen 80;
server_name www.aaa.com;
location / {
root E:/webroot;
index index.html;
include fastcgi_params;
rewrite ^(.*)$ /index.php?$1 last;
}
error_page 404 = http://www.aaa.com/error404.html;
location ~ \.php$ {
root E:/webroot;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.html;
fastcgi_param SCRIPT_FILENAME E:/webroot$fastcgi_script_name;
include fastcgi_params;
}
}