私はこの構成を使用してNginxでMagentoを実行しています: http://www.magentocommerce.com/wiki/1_-_installation_and_configuration/configuring_nginx_for_magento 。
次に、末尾のスラッシュを含まないすべてのURLを、末尾のスラッシュを含む対応するURLに301したいと思います。例:/ contactsから/ contacts /。
私は見つけることができるこの上で事実上すべてのnginxディレクティブを試しましたが、役に立ちませんでした。たとえば、 nginx- Rewrite URL with Trailing Slash で指定されたディレクティブは、/ index.php /へのリダイレクトにつながります。
どのディレクティブをどこに追加すればよいですか?
私は解決策を見つけました:「location /」ブロックの「try_files」ディレクティブの上に次の行を追加しました:
rewrite ^([^.]*[^/])$ $1/ permanent;
魔法をします。
URLのすべての可能性を考慮する必要があるため、これは非常にトリッキーです。あなたがそこに投稿した設定を詳しく見て、希望を実装しようとしながらそれを最適化しましょう。ウェブサイトに複数のセキュリティリスクが含まれているため、完全な構成を修正する必要があります(構成後も読み続けます)。
server {
server_name DOMAIN.com;
return 301 $scheme://www.$server_name$request_uri;
}
server {
index index.html index.php;
listen 80 default;
root /var/www;
server_name www.DOMAIN.com;
location / {
# Hide ALL kind of hidden stuff.
location ~ /\. {
return 403;
}
# Protect Magento's special directories in document root.
location ~* ^/(app|includes|lib|media/downloadable|pkginfo|report/config\.xml|var)/? {
return 403;
}
# Directly deliver known file types.
location ~* \.(css|gif|ico|jpe?g|js(on)?|png|svg|webp)$ {
access_log off;
add_header Cache-Control "public";
add_header Pragma "public";
expires 30d;
log_not_found off;
tcp_nodelay off;
try_files $uri =404;
}
# Do not allow direct access to index.php
location ~* ^(.*)index\.php$ {
return 301 $1;
}
# Extremely risky ... oh boy!
location ~* \.php/ {
rewrite ^(.*\.php)/ $1 last;
}
# Not direct index.php access and not one of those ultra
# risky php files with a path appended to their script name,
# let's try to add a slash if it's missing.
location ~* ^(.*)[^/]+$ {
return 301 $1/;
}
location ~* \.php$ {
include fastcgi_params;
fastcgi_index index.php;
fastcgi_param PATH_INFO $fastcgi_path_info;
fastcgi_param PATH_TRANSLATED $document_root$fastcgi_path_info;
fastcgi_param SCRIPT_NAME $fastcgi_script_name;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param MAGE_RUN_CODE "default";
fastcgi_param MAGE_RUN_TYPE "store";
fastcgi_pass 127.0.0.1:9000;
# Ensure it's an actual PHP file!
try_files $uri =404;
}
}
location ^~ /var/export/ {
auth_basic "Restricted";
auth_basic_user_file htpasswd;
autoindex on;
}
}
私はこの構成をテストすることはできません。私の知識に基づいて書き留めました。実行してくださいnginx -t
nginxをreload
する前に、エラーが報告された場合は報告してください。繰り返しますが、本番サイトでこれをテストせず、考えられるすべてのものをテストしないでください。