Hi, This following example may help ... Example: Here I am mapping for http to https. You can use accordingly... Rewrite URL http://www.foobar.com/abc to the URL https://www.foobar.com/abc
<VirtualHost _default_:80> RewriteEngine on RewriteRule ^/abc/(.*)$ https://%{SERVER_NAME}/abc/$1 [R,L] </VirtualHost> Thanks Narendra -----Original Message----- From: Shelley [mailto:[EMAIL PROTECTED] Sent: Saturday, March 01, 2008 3:19 PM To: [email protected] Subject: [EMAIL PROTECTED] RewriteRule help Hi all, Anybody knows what apache RewriteRule to use if I want url: http://www.aaa.comm/user/aaaa/ be rewritten as: http://www.aaa.comm/user/index.php/aaaa/ Any help, thank you very much. -- Cheers, Shelley --------------------------------------------------------------------- The official User-To-User support forum of the Apache HTTP Server Project. See <URL:http://httpd.apache.org/userslist.html> for more info. To unsubscribe, e-mail: [EMAIL PROTECTED] " from the digest: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] --------------------------------------------------------------------- The official User-To-User support forum of the Apache HTTP Server Project. See <URL:http://httpd.apache.org/userslist.html> for more info. To unsubscribe, e-mail: [EMAIL PROTECTED] " from the digest: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
