আমি এখানে এনগিনেক্সে কিছুটা নতুন তাই আমার সহ্য কর -
আমি একটি url পুনর্লিখন করতে চান foo.bar.com/newfoo?limit=30
করতে foo.bar.com/newfoo.php?limit=30
।
এটি এরকম কিছু করতে খুব সহজ লাগে rewrite ^([a-z]+)(.*)$ $1.php$2 last;
আমি যে অংশটি সম্পর্কে বিভ্রান্ত হয়েছি তা এটি কোথায় রাখা উচিত - আমি কোনও অবস্থানের নির্দেশে আমার হাত চেষ্টা করেছি তবে আমি এটি ভুল করছি।
এখানে আমার বিদ্যমান ভার্চুয়াল হোস্ট কনফিগারেশন, আমার পুনর্লিখনটি আমি কোথায় বাস্তবায়ন করব?
server {
listen 80;
listen [::]:80;
server_name foo.bar.com;
root /home/foo;
index index.php index.html index.htm;
location / {
try_files $uri $uri/ /index.html;
}
location /doc/ {
alias /usr/share/doc/;
autoindex on;
allow 127.0.0.1;
deny all;
}
location ~ \.php$ {
try_files $uri =404;
fastcgi_split_path_info ^(.+\.php)(/.+)$;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_pass unix:/tmp/php5-fpm.sock;
fastcgi_index index.php;
}
}
ধন্যবাদ!