On Thursday 27 June 2002 02:49, Jason G Trusty wrote:
> Hello,
>
> I read the support pages at php.net regarding php.ini. Am I correct in the
> assumption that so long as you have php compiled as a module for apache
> that you can than use apache style directives to override the default
> php.ini?
On Wednesday 08 August 2001 00:00, Sean Cook wrote:
> I am trying to figure out a way to run an application such that
> regardless of the url I achieve the same results. This is similar to
> the way apache/mod_perl works ... example
>
>
> SetHandler perl-script
> PerlHandler someh
What you are looking for isn't a php function, but a module in apache called
mod_rewrite..this is usually installed in most apaches, if not can be done
easily.
so in the stie .htaccess (or indeed in the master conf) you would do
something like
RewriteEngine On
RewriteRule ^/login/[a-zA-z0-9]* /l
3 matches
Mail list logo