Guest User

Untitled

a guest
May 24th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. RewriteCond %{REQUEST_URI} ^/?mysite/?
  2. RewriteRule (.*)mysite/(.*) $1$2 [R=301,L]
  3.  
  4. https://www.domain.com/mysite/about/
  5.  
  6. https://www.domain.com/about/
  7.  
  8. GET 301 Redirect to http://www.domain.com/about https://www.domain.com/mysite/about
  9. GET 302 Redirect to https://www.domain.com/about http://www.domain.com/about
  10. GET 302 Redirect to http://www.domain.com/about/ https://www.domain.com/about
  11. GET 302 Redirect to https://www.domain.com/about/ http://www.domain.com/about/
  12. GET 200 html https://www.domain.com/about/
  13.  
  14. RewriteCond %{REQUEST_URI} ^/?mysite/?
  15. RewriteRule (.*)mysite/(.*)/? https://www.example.com/$1$2/ [R=301,L]
Add Comment
Please, Sign In to add comment