1
我有一個網站,有些網頁在網址末尾有一個問號。這看起來像:
zip-da.ru/catalog/bumps.html?
如何從url中刪除空的查詢字符串?
,我希望它改寫爲:
zip-da.ru/catalog/bumps.html
我如何可以使用.htaccess文件做什麼呢?
感謝您的幫助!到底
RewriteEngine On
RewriteCond %{THE_REQUEST} \?\s
RewriteRule^%{REQUEST_URI}? [L,R=302]
?
將從您的網址中去除查詢字符串:
它不起作用:(它將http://zip-da.ru/catalogue?重定向到zip-da.ru/index.php –
它確實有效。'/catalog/bumps.html?'gets通過刪除'?'重定向到'/ catalog/bumps.html' – anubhava
@GregoryZhdanov分享你的htaccess它可以有一些另外的規則 –