gpt4 book ai didi

linux - (Nginx) Non-HTTP/Non-WWW to HTTPS/WWW 导致 PHP (Without Extension) 文件被下载

转载 作者:太空宇宙 更新时间:2023-11-04 09:00:00 27 4
gpt4 key购买 nike

我已经浏览了各种线程很多小时(不夸张),但一直无法找到一种解决方案组合,使我能够将非 www 和 http 转发到 www 和 https,同时仍然能够查看 php 文件没有扩展名。如下是我的nginx配置文件;感谢您提供任何帮助!

##
# You should look at the following URL's in order to grasp a solid understanding
# of Nginx configuration files in order to fully unleash the power of Nginx.
# http://wiki.nginx.org/Pitfalls
# http://wiki.nginx.org/QuickStart
# http://wiki.nginx.org/Configuration
#
# Generally, you will want to move this file somewhere, and start with a clean
# file but keep this around for reference. Or just disable in sites-enabled.
#
# Please see /usr/share/doc/nginx-doc/examples/ for more detailed examples.
##

server {
listen 80;
server_name domain.com;
rewrite ^(.*) http://www.domain.com$1 permanent;
}

server {
listen 80 default_server;
listen [::]:80 default_server ipv6only=on;

server_name www.domain.com;

root /usr/share/nginx/html;
index index.php index.html index.htm;

location / {
try_files $uri $uri/ @extensionless-php;

# Uncomment to enable naxsi on this location
# include /etc/nginx/naxsi.rules
}

# Only for nginx-naxsi used with nginx-naxsi-ui : process denied requests
#location /RequestDenied {
# proxy_pass http://127.0.0.1:8080;

error_page 404 /404.html;

# redirect server error pages to the static page /50x.html
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}

# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
location ~ \.php$ {
try_files $uri =404;
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_index index.php;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
}

location @extensionless-php {
rewrite ^(.*)$ $1.php last;
}

# deny access to .htaccess files, if Apache's document root
# concurs with nginx's one
#
#location ~ /\.ht {
# deny all;
#}
}


# another virtual host using mix of IP-, name-, and port-based configuration
#
#server {
# listen 8000;
# listen somename:8080;
# server_name somename alias another.alias;
# root html;
# index index.html index.htm;
#
# location / {
# try_files $uri $uri/ =404;
# }
#}


# HTTPS server

server {
listen 443;
server_name www.domain.com;

root html;
index index.html index.htm index.php;

ssl on;
ssl_certificate /etc/nginx/ssl/server.crt;
ssl_certificate_key /etc/nginx/ssl/server.key;

ssl_session_timeout 5m;

ssl_protocols SSLv3 TLSv1 TLSv1.1 TLSv1.2;
ssl_ciphers "HIGH:!aNULL:!MD5 or HIGH:!aNULL:!MD5:!3DES";
ssl_prefer_server_ciphers on;

location / {
try_files $uri $uri/ =404;
}
}

附言提供了通用代码(即 domain.com)以便其他人在需要时使用此解决方案!

编辑:我已经解决了我自己的问题!请参阅下面的解决方案。 :)

最佳答案

我找到了解决我自己问题的方法!希望这对外面的一些人有用。基本上,NGINX配置文件中的修改将http://domain.com转发到http://www.domain.com再转发http://www.domain.comhttps://www.domain.com,全部不使用 .php 扩展名。

也就是说,我可以访问 https://www.domain.com/phpinfo.php 上名为“phpinfo”的 PHP 文件,只需访问 domain.com/phpinfo(或完整的 URL,https://www.domain.com/phpinfo <-- 没有 php 扩展名)。这对某些用户来说似乎微不足道,但对像我这样的初学者很有用。

我不得不对我的问题中的代码做一点补充,其更新后的表格可以在下面找到。在用于 HTTPS 的服务器 { ... } 下,我必须从普通 HTTP 服务器复制位置/{ ... }、位置 ~ .php $ { ... } 和位置 @extensionless-php { ... } { ... }。

以下是更新后的代码,方便查看!我希望这被证明是有用的。

##
# You should look at the following URL's in order to grasp a solid understanding
# of Nginx configuration files in order to fully unleash the power of Nginx.
# http://wiki.nginx.org/Pitfalls
# http://wiki.nginx.org/QuickStart
# http://wiki.nginx.org/Configuration
#
# Generally, you will want to move this file somewhere, and start with a clean
# file but keep this around for reference. Or just disable in sites-enabled.
#
# Please see /usr/share/doc/nginx-doc/examples/ for more detailed examples.
##

server {
listen 80;
server_name domain.com;
rewrite ^(.*) https://www.domain.com$1 permanent;
}

server {
listen 80 default_server;
listen [::]:80 default_server ipv6only=on;

server_name www.domain.com;
rewrite ^(.*) https://www.domain.com$1 permanent;

root /usr/share/nginx/html;
index index.php index.html index.htm;

location / {
try_files $uri $uri/ @extensionless-php;

# Uncomment to enable naxsi on this location
# include /etc/nginx/naxsi.rules
}

# Only for nginx-naxsi used with nginx-naxsi-ui : process denied requests
#location /RequestDenied {
# proxy_pass http://127.0.0.1:8080;

error_page 404 /404.html;

# redirect server error pages to the static page /50x.html
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}

# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
location ~ \.php$ {
try_files $uri =404;
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_index index.php;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
}

location @extensionless-php {
rewrite ^(.*)$ $1.php last;
}

# deny access to .htaccess files, if Apache's document root
# concurs with nginx's one
#
#location ~ /\.ht {
# deny all;
#}
}


# another virtual host using mix of IP-, name-, and port-based configuration
#server {
# listen 8000;
# listen somename:8080;
# server_name somename alias another.alias;
# root html;
# index index.html index.htm;
#
# location / {
# try_files $uri $uri/ =404;
# }
#}


# HTTPS server

server {
listen 443;
server_name www.domain.com;

root html;
index index.html index.htm index.php;

ssl on;
ssl_certificate /etc/nginx/ssl/server.crt;
ssl_certificate_key /etc/nginx/ssl/server.key;

ssl_session_timeout 5m;

ssl_protocols SSLv3 TLSv1 TLSv1.1 TLSv1.2;
ssl_ciphers "HIGH:!aNULL:!MD5 or HIGH:!aNULL:!MD5:!3DES";
ssl_prefer_server_ciphers on;

location / {
# NOTE: THIS REQUIRED AN EDIT.
try_files $uri $uri/ @extensionless-php;
}

# NOTE: THE FOLLOWING CODE IS A MERE DUPLICATE FROM THE HTTP SERVER ABOVE!

# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
location ~ \.php$ {
try_files $uri =404;
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_index index.php;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
}

location @extensionless-php {
rewrite ^(.*)$ $1.php last;
}

}

关于linux - (Nginx) Non-HTTP/Non-WWW to HTTPS/WWW 导致 PHP (Without Extension) 文件被下载,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23349852/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com