How to change URL? htaccess

前端 未结 2 1837
感情败类
感情败类 2021-01-25 05:01

What I have

newsy/czytaj/items/odbierz-250zl-na-reklame.html

This is what I would have

newsy/odbierz-250zl-na-reklame.html

2条回答
  •  悲哀的现实
    2021-01-25 05:17

    RewriteEngine on
    RewriteRule ^newsy/([^\./]+)\.html /newsy/czytaj/items/$1.html [L]
    

    This will rewrite anything that starts with newsy and add a /czytaj/items between it and the html file.

提交回复
热议问题