Advertisement
Guest User

Untitled

a guest
Oct 6th, 2015
158
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. <video controls="controls" width="320" height="240">
  2. <source src="../vids/puela-toro.mp4" type="video/mp4" />
  3. Votre navigateur ne supporte pas le tag video.
  4. </video>
  5.  
  6.  
  7. .HTACCESS
  8. AddType video/webm .webm
  9. AddType video/mp4 .mp4
  10. AddType video/ogg .ogg
  11. AddType video/ogg .ogv
  12.  
  13. # BEGIN WordPress
  14. <IfModule mod_rewrite.c>
  15. RewriteEngine On
  16. RewriteBase /
  17. RewriteRule ^index\.php$ - [L]
  18. RewriteCond %{REQUEST_FILENAME} !-f
  19. RewriteCond %{REQUEST_FILENAME} !-d
  20. RewriteRule . /index.php [L]
  21. </IfModule>
  22.  
  23. # END WordPress
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement