Advertisement
Guest User

htaccess

a guest
Aug 17th, 2013
177
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.97 KB | None | 0 0
  1. # MY OWN REWRITE RULES
  2. RewriteEngine on
  3.  
  4. # on dit au server apache : analyse l'url qu'on t'a envoyé, et si
  5. # si tu trouve ca: tu le remplace par ca:
  6.  
  7. RewriteRule ^([a-z]{2})/$ /main.php?lang=$1 [L]
  8.  
  9. RewriteRule ^en/presentation$ /page1.php?lang=en [L]
  10. RewriteRule ^en/latest-releases$ /page2.php?lang=en [L]
  11. RewriteRule ^en/contact$ /contact.php?lang=en [L]
  12.  
  13. RewriteRule ^fr/presentation$ /page1.php?lang=fr [L]
  14. RewriteRule ^fr/derniers-sous-titres$ /page2.php?lang=fr [L]
  15. RewriteRule ^fr/contact$ /contact.php?lang=fr [L]
  16.  
  17. RewriteRule ^it/presentazione$ /page1.php?lang=it [L]
  18. RewriteRule ^it/ultimo-sottotitoli$ /page2.php?lang=it [L]
  19. RewriteRule ^it/contatti$ /contact.php?lang=it [L]
  20.  
  21. # MY OWN REDIRECTION
  22. Redirect 301 /index.html /lang_choice.php
  23. Redirect 301 /index.php /lang_choice.php
  24.  
  25. redirect 301 /main.php /en/
  26. redirect 301 /main.php?lang=en /en/
  27. redirect 301 /main.php?lang=fr /fr/
  28. redirect 301 /main.php?lang=it /it/
  29.  
  30. redirect 301 /page1.php /en/presentation
  31. redirect 301 /page1.php?lang=en /en/presentation
  32. redirect 301 /page1.php?lang=fr /fr/presentation
  33. redirect 301 /page1.php?lang=it /it/presentazione
  34.  
  35. redirect 301 /page2.php /en/latest-releases
  36. redirect 301 /page2.php?lang=en /en/latest-releases
  37. redirect 301 /page2.php?lang=fr /fr/derniers-sous-titres
  38. redirect 301 /page2.php?lang=it /it/ultimo-sottotitoli
  39.  
  40. redirect 301 /contact.php /en/contact
  41. redirect 301 /contact.php?lang=en /en/contact
  42. redirect 301 /contact.php?lang=fr /fr/contact
  43. redirect 301 /contact.php?lang=it /it/contatti
  44.  
  45. Redirect 301 /page1.html /en/presentation
  46. Redirect 301 /page2.html /en/latest-releases
  47. Redirect 301 /page3.html /404.php
  48. Redirect 301 /page4.html /404.php
  49. Redirect 301 /contact.html /en/contact
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement