nginx:如果给定的URI指向现有目录,则重定向到index.html

时间:2013-06-11 11:41:37

标签: nginx

假设用户在浏览器中输入http://mysite.com/css。如果URI(在这种情况下为css)是服务器根目录中存在的目录,我想重定向到index.html。要查看它的实际效果,在处理请求后,地址栏中的URL应保持原样(例如http://mysite.com/css),但会提供index.html的内容,而不是显示目录的结构。< / p>

这是我尝试过的。请注意,/login/share不是我的服务器根目录中的目录或文件。只有/php/login.php/php/share.php的重写规则。

location / {
    try_files $uri $uri/ /index.html;
}

location = /css {
    # redirects to index.html, but removes css from URL,
    # i.e. http://mydomain.com/css -> http://mydomain.com
    rewrite ^(.+)$ /index.html/css break;
}

location = /php {
    rewrite ^(.+)$ /index.html/php break;
}

location ^~ /login/ {
    rewrite ^/login/(.+)$ /php/login.php?url=$1 last;
}

location ^~ /share/ {
    rewrite ^/share/(.+)$ /php/share.php?url=$1 last;
}

location ~ \.php$ {
    try_files $uri =404;
    fastcgi_split_path_info ^(.+\.php)(/.+)$;
    # NOTE: You should have "cgi.fix_pathinfo = 0;" in php.ini

    # With php5-cgi alone:
    #fastcgi_pass 127.0.0.1:9000;
    # With php5-fpm:
    fastcgi_pass unix:/var/run/php5-fpm.sock;
    fastcgi_index index.php;
    include fastcgi_params;
}

我的服务器根目录中有两个目录cssjs。使用此配置,对http://mydomain.com/csshttp://mydomain.com/php的请求会重定向到http://mydomain.com。这很好,但URI被删除了。我怎么能这样做?

我也很好奇如何概括服务器根目录中任意数量目录的行为。我可能需要使用if来检查请求的URI是否是目录,但是必须尽可能避免if一遍{{1}}。对于只有2个目录,具有单独的位置块应该更有效,我猜?

1 个答案:

答案 0 :(得分:0)

我的代码出错了...现在修复后,“http://mydomain.com/css”会提供index.html中的内容。我在正则表达式中使用&而不是$ ...