Newer
Older
hello-programmer-world / public / .htaccess
@h.sakamoto h.sakamoto 16 days ago 253 bytes htaccess
# htaccess for Astro.js
ErrorDocument 404 /404.html

# スラッシュの自動補完(ディレクトリ実体がある場合)
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_URI} !(.*)/$
RewriteRule ^(.*)$ /$1/ [L,R=301]