我有以下服务器块:
server {
listen 80;
server_name petpal.co.il;
root /usr/share/nginx/petpal;
index index.php;
rewrite ^/([a-zA-Z]+)\-([0-9\-]+)$ /$1.php?page=$2? last;
rewrite ^/en/([a-zA-Z]+)\-([0-9\-]+)$ /en/$1.php?page=$2? last;
location / {
try_files $uri $uri/ @extensionless-php;
}
location @extensionless-php {
rewrite ^(.*)$ $1.php last;
}
set $lang "";
if ($uri ~ "^/en/") {set $lang "en/";}
error_page 404 /${lang}notfound;
location ~ \.php$ {
try_files $uri =404;
client_max_body_size 4M;
fastcgi_read_timeout 300;
fastcgi_pass unix:/var/run/php-fpm/php-fpm.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
}
它已经处理了url重写(处理petpal.co.il/dogs为dogs.php),但是,我想避免人们到达page.php所以不会有重复的页面(同一页面名为x和x) .php),所以我想做的就是添加一条规则,将人们从page.php重定向到没有.php的页面,或者至少显示404找不到的页面(你觉得哪个更好?)
希望我解释得很好,有什么线索吗? 谢谢!
答案 0 :(得分:0)
我不确定我是否完全理解您的问题,但您可以执行以下操作而不是编写规则。
现在,如果你去petpal.co.il/dogs它会显示petpal.co.il/dogs/index.php。
用户仍然可以访问dog / index.php,但它不是重复的页面。
希望它有所帮助!