How to remove part of URl with .htaccess?

后端 未结 5 441
星月不相逢
星月不相逢 2020-12-09 20:28

Currently i have 20+ URLs on my site in this formate

http://www.example.net/content/index/mission

I want to remove /content/index from all URLs, so they shou

5条回答
  •  囚心锁ツ
    2020-12-09 21:09

    RewriteEngine On
    RewriteCond %{REQUEST_URI} ^/removedstring/
    RewriteRule ^removedstring/(.*)$ https://www.domain.eu/$1 [L,NC,R=301]
    

提交回复
热议问题