スクリプトはルート ドメインのディレクトリにありますが、常にリダイレクトします。
http://www.mydomain.com/script
に
http://www.mydomain.com/script/
そして、index.php(ホームページ)でのみ末尾のスラッシュを削除して、そのリダイレクトを削除したいと思います。末尾のスラッシュなしでURLを入力すると、正しくリダイレクトされます
http://www.mydomain.com/script
私のHTACCESSコードは次のとおりです。
Options +FollowSymLinks
Options -Indexes
ServerSignature Off
RewriteEngine on
# Force NON WWW TO WWW in all pages.
RewriteBase /script
RewriteCond %{THE_REQUEST} ^.*\/index\.php\ HTTP/
RewriteRule ^(.*)index\.php$ /$1 [R=301,L]
RewriteCond %{http_host} ^mydomain.com$ [nc]
RewriteRule ^(.*)$ http://www.mydomain.com/script/$1 [r=301,nc,L]
# Remove the .php extension
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}\.php -f
RewriteRule ^([^/]+)/$ $1.php
# Force the trailing slash at the end of urls
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !(\.[a-zA-Z0-9]{1,5}|/)$
RewriteRule (.*)$ /$1/ [R=301,L]
# SEO URLs
RewriteRule ^post/([^/\.]+)/?$ post.php?id=$1 [L]