Re: [PHP] URL Rewrite not working for me

2008-07-25 Thread Daniel Brown
On Fri, Jul 25, 2008 at 3:59 PM, Per Jessen <[EMAIL PROTECTED]> wrote: > > However, Don's question was of the kind that is easily overlooked on the > apache list, where topics tend to be a little less basic. I tend to > think that basic apache/php questions are sometimes better asked here, > even

Re: [PHP] URL Rewrite not working for me

2008-07-25 Thread Per Jessen
Daniel Brown wrote: > Per's answer is probably exactly what you're looking for, Don. > Keep in mind, though, that this isn't a PHP question. Future > questions of this nature would be better suited for the Apache list. Couldn't agree more. > You may find sometimes that asking a question on the

Re: [PHP] URL Rewrite not working for me

2008-07-25 Thread Daniel Brown
On Fri, Jul 25, 2008 at 6:00 AM, Don Don <[EMAIL PROTECTED]> wrote: > Hi all, > > I've set up a url rewrite code below. > > Options +FollowSymLinks > RewriteEngine on > > RewriteRule profile/username/(.*) profile.php?username=$1 > > It only works when I type in this url > http://www.example.com/pr

Re: [PHP] URL Rewrite not working for me

2008-07-25 Thread Per Jessen
Don Don wrote: > Hi Per, > changed the rewrite to this > > Options +FollowSymLinks > RewriteEngine on > > RewriteRule profile/username/(.*) profile.php?username=$1 [r] > > but sill does not work the way i want. Entering this url > http://example.com/profiles/profile.php?username=baller does n

Re: [PHP] URL Rewrite not working for me

2008-07-25 Thread Raman .
Hi!! For Internal redirection: RewriteRule profile/username/([^/]+) profile.php?username=$1 [PT] On Fri, Jul 25, 2008 at 3:00 AM, Don Don <[EMAIL PROTECTED]> wrote: > Hi all, > > I've set up a url rewrite code below. > > Options +FollowSymLinks > RewriteEngine on > > RewriteRule profile/username

Re: [PHP] URL Rewrite not working for me

2008-07-25 Thread Don Don
/profiles/profile/username/baller --- On Fri, 7/25/08, Per Jessen <[EMAIL PROTECTED]> wrote: > From: Per Jessen <[EMAIL PROTECTED]> > Subject: Re: [PHP] URL Rewrite not working for me > To: php-general@lists.php.net > Date: Friday, July 25, 2008, 3:15 AM > Don Don wrote: &

Re: [PHP] URL Rewrite not working for me

2008-07-25 Thread Per Jessen
Don Don wrote: > Hi all, > > I've set up a url rewrite code below. > > Options +FollowSymLinks > RewriteEngine on > > RewriteRule profile/username/(.*) profile.php?username=$1 > > It only works when I type in this url > http://www.example.com/profiles/profile/username/baller/ > > If i do not

[PHP] URL Rewrite not working for me

2008-07-25 Thread Don Don
Hi all, I've set up a url rewrite code below. Options +FollowSymLinks RewriteEngine on RewriteRule profile/username/(.*) profile.php?username=$1 It only works when I type in this url http://www.example.com/profiles/profile/username/baller/ If i do not then the normal url http://www.example

Re: [PHP] URL Rewrite

2008-07-06 Thread Fabrice VIGNALS
Look at http://framework.zend.com/manual/en/zend.controller.router.html Apache configuration et framework methods to rout your files are there. "Subhranil" <[EMAIL PROTECTED]> a écrit dans le message de news:[EMAIL PROTECTED] Hi All, I want to show one URL at browser and content of different

Re: [PHP] URL Rewrite

2008-07-02 Thread Børge Holen
On Wednesday 02 July 2008 13:34:32 Bastien Koert wrote: > On Wed, Jul 2, 2008 at 6:33 AM, Per Jessen <[EMAIL PROTECTED]> wrote: > > Subhranil wrote: > > > Hi All, > > > > > > I want to show one URL at browser and content of different URL. > > > > Take a look at apache url rewriting. > > > > > > /Pe

Re: [PHP] URL Rewrite

2008-07-02 Thread Bastien Koert
On Wed, Jul 2, 2008 at 6:33 AM, Per Jessen <[EMAIL PROTECTED]> wrote: > Subhranil wrote: > > > > > Hi All, > > > > I want to show one URL at browser and content of different URL. > > > > > Take a look at apache url rewriting. > > > /Per Jessen, Zürich > > > -- > PHP General Mailing List (http://ww

Re: [PHP] URL Rewrite

2008-07-02 Thread Per Jessen
Subhranil wrote: > > Hi All, > > I want to show one URL at browser and content of different URL. > Take a look at apache url rewriting. /Per Jessen, Zürich -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] URL Rewrite

2008-07-02 Thread Subhranil
Hi All, I want to show one URL at browser and content of different URL. Like user can see the URL at address bar like http://localhost/test/home/ or http://localhost/test/tech/php/but content of page will be http://localhost/test/index.php The URL of the address bar will never change to

Re: [PHP] URL Rewrite???

2006-06-13 Thread Jochem Maas
Keith wrote: > Hi all > > Not really a php issue per se - sorry. > But I'm sure someone here is bound to know the answer. :-) > > I have a main site that is accessible at say > "http://www.somedomain.com/somedir/"; but I want visitors to be able to > access the site using simply "http://www.som

[PHP] URL Rewrite???

2006-06-13 Thread Keith
Hi all Not really a php issue per se - sorry. But I'm sure someone here is bound to know the answer. :-) I have a main site that is accessible at say "http://www.somedomain.com/somedir/"; but I want visitors to be able to access the site using simply "http://www.somedomain.com"; AND for the re

Re: [PHP] url rewrite

2003-03-28 Thread Chris Hewitt
Sebastian wrote: if that were the case I wouldn't have asked here.. perhaps i didn't find the answer at "google or the archives." - Original Message - From: "Jason Wong" <[EMAIL PROTECTED]> Ask google or ask the archives. | On Friday 28 March 2003 16:38, Seb

Re: [PHP] url rewrite

2003-03-28 Thread Sebastian
if that were the case I wouldn't have asked here.. perhaps i didn't find the answer at "google or the archives." - Original Message - From: "Jason Wong" <[EMAIL PROTECTED]> Ask google or ask the archives. | On Friday 28 March 2003 16:38, Sebastian wrote: | | > i am not sure where to po

Re: [PHP] url rewrite

2003-03-28 Thread Jason Wong
On Friday 28 March 2003 16:38, Sebastian wrote: > i am not sure where to post this question, since it's partly related to > PHP, so i'll ask here. Ask google or ask the archives. > I'd like to rewrite a url > that looks like this: /news/articles/article.php?id=255 > > into /news/articles/255/ -

[PHP] url rewrite

2003-03-28 Thread Sebastian
hello, i am not sure where to post this question, since it's partly related to PHP, so i'll ask here. I'd like to rewrite a url that looks like this: /news/articles/article.php?id=255 into /news/articles/255/ any help is appreciated. cheers, - Sebastian

Re: [PHP] URL Rewrite Problems...

2001-08-13 Thread Tyler Longren
You forgot to add a method=POST into your tag. Tyler Longren Captain Jack Communications [EMAIL PROTECTED] www.captainjack.com On Mon, 13 Aug 2001 09:35:39 -0500 "Brendan P. Caulfield" <[EMAIL PROTECTED]> wrote: > Hello Everyone, > > I have recently written a script to change htpasswd via a

[PHP] URL Rewrite Problems...

2001-08-13 Thread Brendan P. Caulfield
Hello Everyone, I have recently written a script to change htpasswd via a web interface. The script is running fine, but all of the variables (by default) are being sent in the url. I have not called any of the URL functions, so I am not exactly sure why this is happening. Is there somethin