Well thanks alot, but somhing went wrong, and after reading, still can't
understand why.
I have an Apache server server on my PC, based on WinXP,
and when I use these in .htaccess
Options +FollowSymLinks
RewriteEngine On
RewriteRule ^.*$ /a.php [QSA]
it works well.
How ever at my Linux
> Where can I learn the basic concept of these Rewrite methods? I mean
> before learning the sytax.. I would like to know whats the server is doing
> while output the page page :]
The online doc is always a great place to start. For basics on how
apache decides where the file comes from, see
http:
Brian Mearns-2 wrote:
>
> The QSA option is what you need to pass the GET arguments along to the
> rewritten url. For instance, if you want EVERY url to get served by
> a.php, including GET arguments, you can do:
>
> RewriteRule ^.*$ /a.php [QSA]
>
>
> I'm pretty sure that's the writ