我有一些index.html文件位于文件夹中以获取一些不错的网址 -
site.com/about
其中index.html位于about文件夹中。但我发现我的site.com/about正被重定向到site.com/about/
我不确定301的生成位置。它不在配置中。
/ about /也有301结果。
我想这是有意义的,因为我重定向到index.html文件,但它不应该是重写?有没有办法返回200 for / about而不是301 to about /?
我正在使用nginx
服务器阻止:
server {
listen IP;
server_name site.com;
rewrite / $scheme://www.$host$request_uri permanent;
}
server {
listen IP:80;
server_name site.com *.site.com;
root /var/www/vhosts/site.com/htdocs;
charset utf-8;
rewrite_log on;
location / {
index index.html index.php;
try_files $uri $uri/ /$uri.php;
expires 30d;
}
if ($request_uri = /index.php) {
return 301 $scheme://$host;
}
if ($request_uri = /index) {
return 301 $scheme://$host;
}
location /. {
return 404;
}
location ~ .php/ {
rewrite ^(.*.php)/ $1 last;
}
include "ssl_offloading.inc";
location ~ .php$ {
# if (!-e $request_filename) { rewrite / /index.php last; }
if (!-e $request_filename) { rewrite / /404.php last; }
}
}
答案 0 :(得分:2)
index
指令和$uri/
指令的try_files
元素具有通过执行外部重定向向目录名称添加尾随/
的副作用。
为避免外部重定向并在显示无斜线目录名时返回适当的索引文件,请在index
指令中明确实现try_files
功能:
location / {
try_files $uri $uri/index.html $uri.php;
expires 30d;
}
请注意.php
仅适用于此位置的最后一个元素。如果您需要检查$uri/index.php
(除了$uri.php
),您可以使用命名的位置块 - 并将 fastcgi配置移动或复制到其中。
例如(基于您的服务器块):
root /var/www/vhosts/site.com/htdocs;
error_page 404 /404.php;
location / {
try_files $uri $uri/index.html @php;
expires 30d;
}
location @php {
try_files $uri.php $uri/index.php =404;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
...
fastcgi_pass ...;
}
location = /index.php { return 301 $scheme://$host; }
location = /index { return 301 $scheme://$host; }
location /. { return 404; }
location ~* \.php(/|$) { rewrite ^(.*)\.php $1 last; }
include "ssl_offloading.inc";