centos+Nginx + PHP+mysql,请问我怎么开启rewrite

 我来答
康纳塔尔DE
推荐于2016-12-06 · 超过57用户采纳过TA的回答
知道小有建树答主
回答量:97
采纳率:0%
帮助的人:77万
展开全部

nginx不用开启rewrite,nginx的重写规则需要写在nginx的conf里面,下面是一些例子

rewrite重写需要写在location里面如

location / {
            rewrite ^/archiver/((fid|tid)-[\w\-]+\.html)$ /archiver/index.php?$1 last;
            rewrite ^/forum-([0-9]+)-([0-9]+)\.html$ /forumdisplay.php?fid=$1&page=$2 last;
            rewrite ^/thread-([0-9]+)-([0-9]+)-([0-9]+)\.html$ /viewthread.php?tid=$1&extra=page%3D$3&page=$2 last;
            rewrite ^/space-(username|uid)-(.+)\.html$ /space.php?$1=$2 last;
            rewrite ^/tag-(.+)\.html$ /tag.php?name=$1 last;
        }

完整的例子

server
{
listen       80;
index index.html index.htm index.php default.html default.htm default.php;
root  /data/wwwroot/yiqicms;
                location / {
if (-f $request_filename/index.html){
                 rewrite (.*) $1/index.html break;
          }
if (-f $request_filename/index.php){
                 rewrite (.*) $1/index.php;
         }
rewrite ^/article\/(.+)\.html$ /article.php?name=$1 last;
rewrite ^/product\/(.+)\.html /product.php?name=$1 last;
rewrite ^/category\/([^/]+)_([0-9]+)[/]? /category.php?name=$1&p=$2 last;
rewrite ^/category\/([^/_]+)[/]? /category.php?name=$1 last;
rewrite ^/catalog\/([^/]+)[/]? /catalog.php?type=$1 last;
rewrite ^/comment.html$ /comment.php last;
rewrite ^/sitemap.xml$ /sitemap.php last;
rewrite ^/a_(.+)\.html$ /article.php?name=$1 last;
rewrite ^/p_(.+)\.html /product.php?name=$1 last;
rewrite ^/c_([^/]+)_([0-9]+)[/]? /category.php?name=$1&p=$2 last;
rewrite ^/c_([^/_]+)[/]? /category.php?name=$1 last;
error_page 404  /404.htm;
         }

location ~ .*\.(php|php5)?$
{
try_files $uri =404;
fastcgi_pass  unix:/tmp/php-cgi.sock;
fastcgi_index index.php;
include fcgi.conf;
}

location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
{
expires      30d;
}

location ~ .*\.(js|css)?$
{
expires      30d;
}
}
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式