我的网络服务器上有以下文件:
/var/www/html/--+
|
+-misc--+
| |
| +-misc1--+
| | |
| | +-index.html
| |
| +-misc2--+
| | |
| | +-index.php
| |
| +-misc3.php
|
+-wordpress--+
|
+-index.php
我设置了 Nginx,以便http://example.com/进入我的 Wordpress 安装。在我之前的(Apache)设置中,我能够轻松地创建别名来指向其中的项目,misc
但我不确定如何在 Nginx 中执行此操作。
index index.php index.html;
root /var/www/html/wordpress;
location ~ [^/]\.php(/|$) {
limit_except GET POST {}
fastcgi_split_path_info ^(.+?\.php)(/.*)$;
if (!-f $document_root$fastcgi_script_name) {
return 404;
}
fastcgi_buffer_size 16k;
fastcgi_buffers 16 16k;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param PATH_INFO $fastcgi_path_info;
fastcgi_param PATH_TRANSLATED $document_root$fastcgi_path_info;
fastcgi_param SERVER_NAME $host;
fastcgi_param HTTP_PROXY "";
fastcgi_pass unix:/var/run/php-fpm.sock;
fastcgi_index index.php;
include fastcgi_params;
}
location ~* \.(?:css|js|jpg|jpeg|gif|png|mp4)$ {
expires 1M;
access_log off;
add_header Cache-Control "public";
}
location / {
try_files $uri $uri/ /index.php;
limit_except GET {}
}
我想要的是:
- http://example.com/加载 /var/www/html/wordpress/index.php
- http://example.com/misc1加载 /var/www/html/misc/misc1/index.html
- http://example.com/misc2加载 /var/www/html/misc/misc2/index.php
- http://example.com/misc3.php加载 /var/www/html/misc/misc3.php
我试过的:
# http://example.com/misc1 shows index.html but anything else in the folder is 404
location /misc1 {
alias /var/www/html/misc/misc1;
}
# http://example.com/misc1 gives 403, http://example.com/misc1/index.html gives 404
location /misc1/ {
alias /var/www/html/misc/misc1;
}
# shows Wordpress 404 page
location /misc1/* {
alias /var/www/html/misc/misc1;
}
# gives 403 error
location ~ /misc1 {
alias /var/www/html/misc/misc1;
}
我尝试过的任何东西都没有对 PHP 产生任何影响,它不起作用。
不知道你为什么使用别名。试试这个,它没有经过测试,但它应该让你至少更接近你想要达到的目标。如果它不起作用,请评论为什么它不起作用的详细信息,并显示适用的日志和卷曲。
编辑 基于评论“只要我在服务器范围内更改根指令,我就会在我的 Wordpress 网站上得到 404,就好像它忽略了位置范围上的根指令一样。” 你可以试试这个。当我在根目录中有一个自定义 PHP 应用程序,而 Wordpress 在一个子目录中时,我会使用这种技术。
事实证明,
location
基于正则表达式的块总是会覆盖其他块location
。我的配置有两个正则表达式位置:用于启用静态资源缓存的块,以及用于启用 PHP 的块。由于其中一个块与所有正在服务的内容匹配,因此每个其他位置块都被忽略了!我最终做的是嵌套位置块,将静态文件和 PHP 块放在位置块内。现在我的配置如下所示:
php.inc
静态公司
例子.conf