vote up 3 vote down star
1

I rewrite my urls to be user friendly. For example I have a page called user.php that I rewrite to /user. But a user can still use user.php. Can I redirect to a 404 if they request a page with a .php extension?

Options -MultiViews +FollowSymlinks -Indexes
RewriteEngine on


RewriteRule ^user/([0-9]+)$ user.php?id=$1 [L,QSA]

Thanks.

flag

3 Answers

vote up 3 vote down check
RewriteCond %{THE_REQUEST} \.php[\ /?].*HTTP/
RewriteRule ^.*$ - [R=404,L]
link|flag
Pretty sure R=404 isn't one of the status codes that flag accepts... – Gabriel Hurley Jun 28 at 20:30
that works but i can still access the page if i add a question mark after user.php?. maybe i can do something about that to? – Tony Jun 28 at 20:30
fair enough. can't argue if it works. – Gabriel Hurley Jun 28 at 20:31
@Tony: actually you're quite right. Fixed. – cletus Jun 28 at 20:43
thank you cletus youre awesome – Tony Jun 28 at 20:44
vote up 0 vote down

A 301 redirect may be more appropriate for this task.

link|flag
vote up 1 vote down

This should do the trick, I think:

RewriteRule (.*)\.php$ path/to/your/404file [L]
link|flag
so i need to add rule for all my pages? – Tony Jun 28 at 20:26

Your Answer

Get an OpenID
or

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