.htaccess URL rewriting challenge

前端 未结 2 1691
别跟我提以往
别跟我提以往 2021-01-18 01:32

I\'m having trouble with some URL rewriting.

All of the stuff below works fine, but I need to add a rule which removes querystrings from URLS.

site.c

2条回答
  •  予麋鹿
    予麋鹿 (楼主)
    2021-01-18 02:03

    This would remove query string from url

    RewriteRule ^(.*) /index.php/$1? [L] #remove query string
    

    Hope it helps

提交回复
热议问题