Guest User

Untitled

a guest
Jul 21st, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. www.example.com/country/location/london/home.html -> www.example.com/home.html [PT,L]
  2. www.example.com/country/location/germany/home.html -> www.example.com/home.html [PT,L]
  3.  
  4. RewriteEngine On
  5. RewriteCond %{REQUEST_URI} ^/country/location/london/ [NC]
  6. RewriteRule ^/(.*).html$ /$1.html [NC,L,PT]
  7. RewriteCond %{REQUEST_URI} ^/country/location/germany/ [NC]
  8. RewriteRule ^/(.*).html$ /$1.html [NC,L,PT]
Add Comment
Please, Sign In to add comment