我一直在尝试重写我的php
页面,以便在浏览器中显示它们的扩展名。例如,我www.example.com
服务器上的链接会加载名为about-us.php
的网页,在浏览器中,用户会看到www.example.com/about-us
。
我一直在尝试按照这些教程尝试让它工作,但遗憾的是它们无法正常工作。
这是我的nginx sites-available/default
文件内容。
# Server Block
server {
# Listening Ports
listen 80 default_server;
listen [::]:80 default_server ipv6only=on;
# Root Location Initialization
root /home/zach/Documents/Workspaces/www;
index index.php index.html index.htm;
# Server Name
server_name localhost;
# Root Location
location / {
try_files $uri $uri/ @extensionless-php;
}
# Error pages
error_page 404 /404.html;
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /home/zach/Documents/Workspaces/www;
}
# PHP Handling
location ~ \.php$ {
try_files $uri =404;
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
# Extensionless PHP
location @extensionless-php {
rewrite ^(.*)$ $1.php last;
}
}
我php
页面的所有链接仍在浏览器中显示.php
扩展程序,是否有人对我的问题有任何解决方案?
答案 0 :(得分:0)
将以下行添加到您认为它形成循环的确切位置! : - )
if ($request_uri ~ ^/([^?]*)\.php($|\?)) { return 302 /$1?$args; }
此处有更多信息:here