我必须删除" .php",''?id","?another_id"来自.htaccess的php中的url

时间:2017-12-16 05:37:32

标签: .htaccess

我使用此链接I want to remove question mark & .php extension from the url using .htaccess删除" .php"和"?id"。 但如果我有"?another_id"该怎么办?在网址?

1 个答案:

答案 0 :(得分:-1)

将此代码放入.htaccess文件中,它将删除.php

RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^([^\.]+)$ $1.php [NC,L]