Guest User

Untitled

a guest
Apr 21st, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1. /
  2. /en/
  3. index.php
  4. about-us.php
  5. faq.php
  6. ...
  7.  
  8. /fr/
  9. index.php
  10. about-us.php
  11. faq.php
  12. ...
  13.  
  14. ...
  15. etc.
  16.  
  17. # allows for extension-agnostic urls
  18. RewriteCond %{REQUEST_FILENAME} !-d
  19. RewriteCond %{REQUEST_FILENAME}.php -f
  20. RewriteRule ^(.*)$ $1.php
  21.  
  22. RewriteEngine On
  23.  
  24. # defaults to the english site
  25. RewriteRule !^[a-z]{2}/ /en%{REQUEST_URI} [L,R=301]
  26.  
  27. # allows for extension-agnostic urls
  28. RewriteCond %{REQUEST_FILENAME} !-d
  29. RewriteCond %{REQUEST_FILENAME}.php -f
  30. RewriteRule ^(.*)$ $1.php
  31.  
  32. Not Found
  33.  
  34. The requested URL /about-us was not found on this server.
  35.  
  36. RewriteRule !^(fr|en)/ /en%{REQUEST_URI} [L,R=301]
  37.  
  38. RewriteRule !^[a-z]{2}/ /en%{REQUEST_URI} [L,R=301]
Add Comment
Please, Sign In to add comment