blob: 1cc256d03738dfd52f2ba7de7dad73f79804c968 (
plain)
1
2
3
4
5
6
7
8
9
|
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{SCRIPT_FILENAME} -f [OR]
RewriteCond %{SCRIPT_FILENAME}/index.php -f
RewriteRule ^(.*)$ - [L]
RewriteRule ^edition/([0-9]*)$ edition.php?edition_id=$1 [L]
RewriteRule ^([0-9]*)$ index.php?nl_id=$1 [L]
</IfModule>
|