How can I remove this directory/folder from url with htaccess rewrite?

前端 未结 2 2036
孤城傲影
孤城傲影 2020-12-11 18:43

My aim is:

domain.com/folder

rewrite ->

domain.com

this shall concern ALL links inside that site. I mean

2条回答
  •  时光取名叫无心
    2020-12-11 19:19

    You can use this rule to "remove" the folder from the URL when it is accessed directly via the browser:

    RewriteCond %{THE_REQUEST} \ /wedgiecommunity/
    RewriteRule ^wedgiecommunity/(.*)$ /$1 [L,R=301]
    

    Then your other rule will handle the rest.

提交回复
热议问题