我正在尝试从网址中删除斜杠,以下是我通过在线搜索编写的htaccess。
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} (.+)/$
RewriteRule ^ %1 [R=301,L]
RewriteRule ^about-us about-us.php
由于上述htaccess,它将进入www.example.com/about-us.php
而不是www.example.com/about-us
有人可以帮忙吗?