ここで解決策がある別のスレッドを調べましたが、何らかの理由で機能しません。末尾のスラッシュを削除するために見つけた解決策は
# remove trailing slashes
RewriteRule (.*)/$ $1 [L,R=301]
以下は私の.htaccessコードです:
Options -Multiviews
Options +FollowSymLinks
RewriteEngine on
RewriteBase /
RewriteRule ^([^/]+)/$ index.php?slug=$1
RewriteRule ^([^/]+)/([^/]+)$ index.php?slug=$1&post=$2
<IfModule mod_php5.c>
php_flag magic_quotes_gpc Off
</IfModule>
http://domain.com/about/
代わりに次のように機能するように修正する方法を教えてくださいhttp://domain.com/about
よろしく