微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

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

如何解决PHP中查询字符串的HTACCESS重写规则

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

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

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

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]

谢谢!

解决方法

对于您显示的示例,请尝试遵循 htaccess 规则文件。在测试您的网址之前,请务必清除浏览器缓存。

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]

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。