3

How to replace:

domain.com/e-books/1234-etc  

By:

domain.com/artigos/1234-etc

I'm trying:

RewriteRule ^e-books(\d{4}-.*)$ /artigos/(\d{4}-.*)$1 [R=301,L]

EDIT: And this:

RewriteRule ^e-books(\d{4}-.*) /artigos/$1 [R=301,L]
Amit Verma
  • 40,709
  • 21
  • 93
  • 115

1 Answers1

1
RewriteRule ^e-books/(.+)$ /artigos/$1 [NC,R,L]

Clear your browser'cache before testing this.

Amit Verma
  • 40,709
  • 21
  • 93
  • 115