hi
I thought if you wanted the "foo" and everything underneath it or by itself
RewriteRule ^/foo/?.*$ /landing_page
Jenny
On Dec 12, 2007 9:41 AM, thomas Armstrong <[EMAIL PROTECTED]> wrote:
> ---
> RewriteRule ^([^/]+)/?$ /page.php?id=$1 [L]
>
>
On Dec 12, 2007 3:41 PM, thomas Armstrong <[EMAIL PROTECTED]> wrote:
> Hi Eric. Thank you very much for you answer.
>
> I typed:
> -
> RewriteRule ^([^/]+)/*$ /page.php?id=$1 [L]
> -
> and got 500 error message on every page on my website. The same with:
>
> ---
Hi,
thomas Armstrong wrote:
> Hi Eric. Thank you very much for you answer.
>
> I typed:
> -
> RewriteRule ^([^/]+)/*$ /page.php?id=$1 [L]
> -
> and got 500 error message on every page on my website. The same with:
>
> ---
> RewriteRule ^([^/]+)/?$ /page.php?id
Hi Eric. Thank you very much for you answer.
I typed:
-
RewriteRule ^([^/]+)/*$ /page.php?id=$1 [L]
-
and got 500 error message on every page on my website. The same with:
---
RewriteRule ^([^/]+)/?$ /page.php?id=$1 [L]
Regards,
--Thomas
On Dec 12, 2007 7:18 AM, thomas Armstrong <[EMAIL PROTECTED]> wrote:
> Hi.
>
> I created this .htaccess:
> -
> RewriteRule ^([^/]+)/$ /page.php?id=$1 [L]
> ---
>
> And it works fine with:
> http://domain.com/foo/ (it shows a webpage)
>
> But it shows a 404 error page with:
> http://domain.c
Hi.
I created this .htaccess:
-
RewriteRule ^([^/]+)/$ /page.php?id=$1 [L]
---
And it works fine with:
http://domain.com/foo/ (it shows a webpage)
But it shows a 404 error page with:
http://domain.com/foo
I tried adding this line to .htaccess:
RewriteRule ^([^/]+)$ /page.php?id=$1