Files
web_2025/R4.01_R4.A.10/td_tp/tp6/src/todo-riot/htaccess
T

9 lines
243 B
Plaintext
Raw Normal View History

2026-03-16 14:22:17 +01:00
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /~denis/web_2024/tp5/todo-riot/ # votre url
RewriteRule ^index\.html$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . index.html [L]
</IfModule>