我在 .htaccess 中的重定向 URL 有问题。我想从 URL 中删除 .php 和问号。
例如:www.example.com/test.php ?id=12 到 www.example.com/test/12需要这样的格式。
我尝试在我的 .htaccess 中使用此代码
Options +FollowSymLinks -MultiViews
# Turn mod_rewrite on
RewriteEngine On
RewriteBase /
## don't touch /forum URIs
RewriteRule ^forums/ - [L,NC]
## hide .php extension snippet
# To externally redirect /dir/foo.php to /dir/foo
RewriteCond %{THE_REQUEST} ^[A-Z]{3,}\s([^.]+)\.php [NC]
RewriteRule ^ %1 [R,L]
# To internally forward /dir/foo to /dir/foo.php
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}.php -f
RewriteRule ^(.*?)/?$ $1.php [L]
此代码只是从 URL 中删除 .php 扩展名。还需要去掉问号。