Вопрос

I would like to rewrite my url as the following:

http://test.com/listing?p=2 

to

http://test.com/listing/p/2

Any solutions, please kindly to help me.

Это было полезно?

Решение

Place this code in your DOCUMENT_ROOT/.htaccess file:

RewriteEngine On

RewriteRule ^listing/(\w+)/(\d+)/?$ /listing/?$1=$2 [L,QSA,NC]
Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top