Remove trailing slash using .htaccess except for home / landing page

前端 未结 3 1683
死守一世寂寞
死守一世寂寞 2020-12-08 03:06

I\'ve successfully modified my .htaccess file to remove trailing slashes on most pages but I\'m wondering how to exempt my home page/directory? For example:

domain.

3条回答
  •  执笔经年
    2020-12-08 03:45

    Redirects request for all URLs ending in a / except for the root:

    RedirectMatch 301 ^(.+)/$ $1
    

提交回复
热议问题