このスラッシュはトレイリングスラッシュと呼ばれています。
http/conf.d/の.confに設定します。
1 2 3 4 5 6 7 |
<IfModule mod_rewrite.c> ## トレイリングスラッシュ無し→有りに設定 RewriteEngine on RewriteCond %{REQUEST_URI} !/$ RewriteCond %{REQUEST_URI} !\.[^/\.]+$ RewriteRule .* %{REQUEST_URI}/ [R=301,L] </IfModule> |