vote up 0 vote down star

I want to use mod-rewrite for just one file instance:

www.domain.com/contact

to pull from www.domain.com/contact.php

I used a rewrite rule for all files that look like a directory to do this initially but it messed up some diretory redirects I created so in the short-term, I'd rather just do it for a specific file.

Thanks.

flag

31% accept rate

3 Answers

vote up 1 vote down check

Try this rule:

RewriteRule ^contact$ contact.php [L]

This will redirect requests of the URL path /contact internally to /contact.php. If you don’t want to use this rule in a .htaccess file, prepend the pattern with a /^/contact$.

link|flag
vote up 0 vote down
RewriteEngine On

# make sure http://domain.com redirects to http://www.domain.com
RewriteCond %{HTTP_HOST} ^domain.com$ [NC]
RewriteRule ^(.*)$ http://www.domain.com/$1 [R=301,L]

# redirect from /contact to /contact.php
RewriteRule ^contact$ /contact.php [R=301,L]
link|flag
vote up 0 vote down

I would go to something like that:

RewriteRule ^/contact.php$ url_to_redirect/contact.php [P,QSA]

And just in case you have more available information here.

link|flag
This will not do what the OP asked. She doesn't want to redirect across domains. – Sean Bright Jun 15 at 22:09

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.