diff options
| author | Christian Fowler <spider@viovio.com> | 2005-12-28 23:21:25 +0000 |
|---|---|---|
| committer | Christian Fowler <spider@viovio.com> | 2005-12-28 23:21:25 +0000 |
| commit | c07dc79add21f2677680fcc9736b82276d2f8a72 (patch) | |
| tree | 0b432d8fdf68098f0f2e783457fd646fabb09a73 /.htaccess | |
| parent | 2149b17e33d9905d16986ce86757343fabfa8211 (diff) | |
| download | newsletters-c07dc79add21f2677680fcc9736b82276d2f8a72.tar.gz newsletters-c07dc79add21f2677680fcc9736b82276d2f8a72.tar.bz2 newsletters-c07dc79add21f2677680fcc9736b82276d2f8a72.zip | |
lots and lots of subscription fixes, still not 100%
Diffstat (limited to '.htaccess')
| -rw-r--r-- | .htaccess | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/.htaccess b/.htaccess new file mode 100644 index 0000000..1cc256d --- /dev/null +++ b/.htaccess @@ -0,0 +1,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> |
