S
S
s_katala2016-11-18 10:26:41
Nginx
s_katala, 2016-11-18 10:26:41

How to change link type with htaccess?

There is a link like
site.ru/create?new=news
You need to make it something like
site.ru/create/news
Help...Many thanks in advance

Answer the question

In order to leave comments, you need to log in

2 answer(s)
D
Dmitry Surin, 2016-11-18
@BedwaRe

provided that the mod_rewrite module is enabled on the server, it is done like this

#включаем движок редиректов
  RewriteEngine On

  #переопределить корень сайта, станет как "/"
  RewriteBase /

  RewriteRule ^create/(.*)$ create?new=$1 [L,QSA]

I also recommend reading this article.

K
Kirill Nesmeyanov, 2016-11-18
@SerafimArts

Given the presence of the nginx tag, the answer is "no way". I'll tell you a secret, but htaccess is for Apache, not nginx.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question