我使用此链接I want to remove question mark & .php extension from the url using .htaccess删除" .php"和"?id"。 但如果我有"?another_id"该怎么办?在网址?
答案 0 :(得分:-1)
将此代码放入.htaccess文件中,它将删除.php
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^([^\.]+)$ $1.php [NC,L]