我正在尝试配置 Nginx,以便将所有请求http://domain.com/path重写为http://domain.com/.
我不想重定向,因为我希望 URL 仍然显示原始路径。
示例重写:
http://domain.com/path/index.php -> http://domain.com/index.php
http://domain.com/path/category/books -> http://domain.com/category/books
http://domain.com/path/books.php?q=harry -> http://domain.com/books.php?q=harry
Run Code Online (Sandbox Code Playgroud)
location /path
{
root /var/www/html/;
}
location /path
{
alias /var/www/html/;
}
Run Code Online (Sandbox Code Playgroud)