vote up 0 vote down star
1

I am currently using the following rules in an htaccess file:

RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}\.php -f
RewriteRule ^(.*)$ $1.php

This works well to ensure that myfile.php works as well as just myfile (with no extension). It also handles querystring's with no problems, so myfile?var=foo also works.

The problem is that these are registering in Google Analytics as being too seperate files. So while myfile.php might be the third most popular page on my site, with X visits, myfile might be the fifth most popular page on my site with Y visits.

Is there a way for me to do a hard redirect, rather than "accept either one" type of rule?

Thanks

flag

2 Answers

vote up 1 vote down

Could you just change your last RewriteRule to do this?

RewriteRule ^(.*)$ $1.php [L,R=301]

That will redirect "myfile" to "myfile.php".

Also, you can adjust for this inside of Google Analytics using rules as well. Although that probably isn't an ideal solution.

ETA: If you want myfile.php to redirect to myfile, try this for your last rule instead:

RewriteRule ^(.+)\.php$ $1 [L,R=301]
link|flag
This makes the .php page stay as .php. The page with no extension goes from: localhost/2008/about/management to localhost/C:/Program%20Files/… – Cory Dee Mar 25 at 18:13
Isn't that what you were looking for? Or did you want "myfile.php" to redirect to just "myfile"? – Eric Petroelje Mar 26 at 12:12
Yes, myfile.php to myfile...but it shouldn't be adding in C:/Program Files etc etc into my URL. That creates an invalid path. – Cory Dee Mar 30 at 15:46
Yikes, not sure why it would it be adding C:/Program Files to your URL.. Maybe you need a "RewriteBase /" in there? – Eric Petroelje Mar 31 at 0:50
vote up 1 vote down

Try this rule to redirect requests for .php files:

RewriteCond %{THE_REQUEST} ^GET\ /(([^/?]*/)*[^/?]+)\.php
RewriteRule ^.+\.php$ /%1 [L,R=301]
link|flag
I added this in between the first and second lines. It appears to have not made any effect. – Cory Dee Mar 25 at 13:07
So if you request “/foo/bar.php” you are not being redirected to “/foo/bar”? – Gumbo Mar 25 at 14:02
No, it's still loading /foo/bar.php I also had to move the closing bracket, as it would cut out a directory when used in certain folders. – Cory Dee Mar 25 at 15:08

Your Answer

Get an OpenID
or

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