【发布时间】: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]
谢谢!
【问题讨论】:
标签: apache .htaccess mod-rewrite url-rewriting friendly-url