我的网址看起来像
localhost/test/page1.php
我想隐藏 php 扩展所以我使用下面的方法来隐藏 php 扩展
DirectoryIndex index.php
RewriteEngine on
RewriteCond $1 !^(index\.php|images|robots\.txt)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^([^\.]+)$ $1.php [NC,L]
现在网址是
localhost/test/page1
但是当我使用 localhost/test/page1/ 之类的 url 时,它会显示错误。如何将斜杠 url 重定向到非斜杠 url