我有以下 htaccess
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/?user=$1
例如,它按预期工作
http://example.com/index.php?user=USERNAME -> http://example.com/USERNAME
但是我在 index.php 页面上创建了一个表单,该表单发布到 /directory/save.php
如何在允许目录的同时删除 .php 以便我可以发布到 /directory/save/ ?