[users@httpd] Rewrite rules !!
by Kunal other posts by this author
Feb 28 2006 4:14AM messages near this date
Re: [users@httpd] WebDAV directory allowing all access despite limits
|
Re: [users@httpd] Rewrite rules !!
Hello All,
I am newbie to rewrite rules. I am trying to redirect requests coming to http://domain.com/t
est/ to http://domain.com/test.php using below mod_rewrite rules in .htaccess.
================================================
RewriteEngine on
RewriteCond %{REQUEST_URI} ^/test/(.*)/(.*)/(.*)
RewriteRule ^/(.*) /test.php?cid=%1&pid=%2&type=%3 [L]
RewriteCond %{REQUEST_URI} ^/test/(.*)/(.*)
RewriteRule ^/(.*) test.php?cid=%1&pid=%2 [L]
RewriteCond %{REQUEST_URI} ^/test/(.*)
RewriteRule ^/(.*) test.php?cid=$1 [L]
================================================
Above rule does not seem to be working. Am I doing something wrong?
Any help would be appreciated.
Thank you,
Attachments:
unknown1
unknown2
Thread:
Kunal
Robert Ionescu
|