【发布时间】:2017-12-16 13:39:17
【问题描述】:
我使用此链接I want to remove question mark & .php extension from the url using .htaccess 删除“.php”和“?id”。 但是如果我在 url 中有“?another_id”怎么办?
【问题讨论】:
标签: .htaccess
我使用此链接I want to remove question mark & .php extension from the url using .htaccess 删除“.php”和“?id”。 但是如果我在 url 中有“?another_id”怎么办?
【问题讨论】:
标签: .htaccess
将此代码放在您的 .htaccess 文件中,它将删除 .php
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^([^\.]+)$ $1.php [NC,L]
【讨论】: