假设用户在浏览器中输入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;
}
我的服务器根目录中有两个目录css
和js
。使用此配置,对http://mydomain.com/css
或http://mydomain.com/php
的请求会重定向到http://mydomain.com
。这很好,但URI被删除了。我怎么能这样做?
我也很好奇如何概括服务器根目录中任意数量目录的行为。我可能需要使用if
来检查请求的URI是否是目录,但是必须尽可能避免if
一遍{{1}}。对于只有2个目录,具有单独的位置块应该更有效,我猜?