PHP中查询字符串的HTACCESS重写规则

Posted

技术标签:

【中文标题】PHP中查询字符串的HTACCESS重写规则【英文标题】:HTACCESS Rewrite Rule for Query String in PHP 【发布时间】:2021-08-24 10:08:35 【问题描述】:

我有我的网址https://example.com/?hfgshdsds。

我需要重写一个规则,即使我删除了问号,链接也会和以前一样,所以我的网址需要是https://example.com/hfgshdsds。

目前在我的 .htaccess 文件中,我只有打开不带扩展名 .php 的 php 的规则。

RewriteEngine On
RewriteCond %THE_REQUEST ^GET.*index\.php [NC]
RewriteRule (.*?)index\.php/*(.*) /$1$2 [R=301,NE,L]
RewriteCond %REQUEST_FILENAME.php -f
RewriteRule !.*\.php$ %REQUEST_FILENAME.php [QSA,L]

谢谢!

【问题讨论】:

【参考方案1】:

使用您显示的示例,请尝试遵循 htaccess 规则文件。请确保在测试您的 URL 之前清除您的浏览器缓存。

RewriteEngine On
##keep redirection Rules first then keep rest of rules.
RewriteCond %THE_REQUEST ^GET.*index\.php [NC]
RewriteRule (.*?)index\.php/*(.*) /$1$2 [R=301,NE,L]

RewriteCond %REQUEST_FILENAME.php -f
RewriteRule !.*\.php/?$ %REQUEST_FILENAME.php [QSA,L]

##Adding new rule here for non-existing pages here.
RewriteCond %REQUEST_FILENAME !-f
RewriteCond %REQUEST_FILENAME !-d
RewriteRule ^(.*)/?$ index.php?$1 [QSA,L]

【讨论】:

非常感谢,它对我有用,我认为这对于需要这种规则的每个人来说都是一个很好的解决方案。

以上是关于PHP中查询字符串的HTACCESS重写规则的主要内容,如果未能解决你的问题,请参考以下文章

.htaccess重写删除扩展名和查询字符串并进入文件夹结构但如果页面不存在则发送到另一个页面

重写URL以删除查询字符串

除了我在 htaccess 中的第一条规则之外,我如何重写所有内容?

使用 .htaccess 处理两个查询字符串

.htaccess 中的多个连字符处理(URL 重写)

.htaccess URL 重写挑战