.htaccess tutorial

htaccess Elite


Rewrite /contact/ to /cgi-bin/contact.php?

Ask your mod_rewrite and Redirection questions here, and get answers!

Rewrite /contact/ to /cgi-bin/contact.php?

Postby htaccessfiend » 23 Oct 2006 23:12

How do I make requests for /contact/ serve /cgi-bin/contact.php without changing the address in the browser to /cgi-bin/contact.php?
htaccessfiend
 
Posts: 4
Joined: 23 Oct 2006 23:09

Postby produke » 23 Oct 2006 23:13

Then in the /.htaccess file use this.

Code: Select all
RewriteEngine On
RewriteBase /
RewriteRule ^contact/ /cgi-bin/contact.php [L]
User avatar
produke
 
Posts: 242
Joined: 25 Sep 2006 04:48

Postby produke » 30 Oct 2006 10:39

User avatar
produke
 
Posts: 242
Joined: 25 Sep 2006 04:48


Return to Redirect or Rewrite Questions