blob: b23c9a932c948b9836f193318b9c1479f677d9df (
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,QSA]
RewriteRule ^([0-9]*)$ index.php?nl_id=$1 [L,QSA]
</IfModule>
|