首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > PHP >

nginx伪静态 感谢

2013-09-06 
nginx伪静态求助感谢Options +FollowSymLinksIfModule mod_rewrite.cRewriteEngine onRewriteCond %{REQ

nginx伪静态求助 感谢


Options +FollowSymLinks
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]
</IfModule>

###########################华丽丽的分界线#################
#上面是原来htaccess中的url重写配置(apache环境),thinkphp项目,有xx、yy、zz三个分组,xx是默认分组
#下面是我要配置的虚拟机
##########################################################
server {
listen       80;
server_name  www.aaa.com;
location / {
root   E:/webroot;
index  index.html;
includefastcgi_params;

rewrite  ^(.*)$/index.php?$1 last;
}
error_page404 = http://www.aaa.com/error404.html;
location ~ \.php$ {
rootE:/webroot;
fastcgi_pass127.0.0.1:9000;
fastcgi_indexindex.html;
fastcgi_paramSCRIPT_FILENAME  E:/webroot$fastcgi_script_name;
includefastcgi_params;
}
}



搞了一下午,无论访问www.aaa.com/yy 还是访问www.aaa.zz,   其实都指向了默认的xx分组
崩溃  求助   感谢
[解决办法]

#把所有來源解析到index.php
rewrite ^(.[^~]*)~(.*)$ /index.php?mod=$1&action=$2 last;

例如
http://7di.net/a~b 會解析到 http://7di.net/index.php?mod=a&action=b
[解决办法]
引用:
感谢楼上    已经搞定:
if (!-e $request_filename) {
rewrite  ^(.*)$  /index.php?s=$1  last;
break;
}
請結貼

热点排行