Re: [EMAIL PROTECTED] Problem with htaccess (/year/month/day/)

2007-05-28 Thread thomas Armstrong
Yep, I agree it's better using RewriteRules within httpd.conf but... I'm not allowed with this server :( Is it possible to use RewriteLog within '.htaccess'? Thank you very much for your answer. On 5/26/07, Joshua Slive [EMAIL PROTECTED] wrote: On 5/25/07, thomas Armstrong [EMAIL PROTECTED]

Re: [EMAIL PROTECTED] Problem with htaccess (/year/month/day/)

2007-05-28 Thread Joshua Slive
On 5/28/07, thomas Armstrong [EMAIL PROTECTED] wrote: Yep, I agree it's better using RewriteRules within httpd.conf but... I'm not allowed with this server :( Is it possible to use RewriteLog within '.htaccess'? I don't believe so. As I said, you'll need to replicate the setup on a test

Re: [EMAIL PROTECTED] Problem with htaccess (/year/month/day/)

2007-05-26 Thread Joshua Slive
On 5/25/07, thomas Armstrong [EMAIL PROTECTED] wrote: I'm trying to make my website works with http://www.domain.com/2007/05/25/foo to server http://www.domain.com/redirect.php With Apache 2.2, my .htaccess: RewriteEngine On RewriteRule

[EMAIL PROTECTED] Problem with htaccess (/year/month/day/)

2007-05-25 Thread thomas Armstrong
I'm trying to make my website works with http://www.domain.com/2007/05/25/foo to server http://www.domain.com/redirect.php With Apache 2.2, my .htaccess: RewriteEngine On RewriteRule ^([0-9]+)/([0-9]+)/([0-9]+)/(.*) /redirect.php [QSA,L] RewriteRule