Welcome Guest, Not a member yet? Register   Sign In
Super .htaccess file
#33

[eluser]Xeoncross[/eluser]
I was just going over this file when I realized that it can be improved.


Code:
# If the file is NOT the index.php file
RewriteCond %{REQUEST_FILENAME} !index.php
# Hide all PHP files so none can be accessed by HTTP
RewriteRule (.*)\.php$ index.php?/$1

# If the file/dir is not real
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d

RewriteRule ^(.*)$ index.php?/$1 [QSA,L]

Shouldn't we be able to check to see if it has a PHP extension instead of just point everything to the index.php file?


Code:
# If the file/dir is not real
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d

# Hide all PHP files so none can be accessed by HTTP
# If they are accessing a PHP file
RewriteCond %{REQUEST_FILENAME}\.php -f

RewriteRule ^(.*)$ index.php?/$1 [QSA,L]

Is this the right way to do it?


Messages In This Thread
Super .htaccess file - by El Forum - 07-16-2008, 10:10 PM
Super .htaccess file - by El Forum - 07-17-2008, 01:48 PM
Super .htaccess file - by El Forum - 07-17-2008, 08:00 PM
Super .htaccess file - by El Forum - 07-18-2008, 08:26 AM
Super .htaccess file - by El Forum - 07-18-2008, 09:31 AM
Super .htaccess file - by El Forum - 07-18-2008, 01:02 PM
Super .htaccess file - by El Forum - 07-18-2008, 02:00 PM
Super .htaccess file - by El Forum - 07-18-2008, 02:41 PM
Super .htaccess file - by El Forum - 07-19-2008, 12:16 PM
Super .htaccess file - by El Forum - 07-22-2008, 08:15 AM
Super .htaccess file - by El Forum - 07-25-2008, 09:24 AM
Super .htaccess file - by El Forum - 07-25-2008, 09:53 AM
Super .htaccess file - by El Forum - 07-26-2008, 12:01 AM
Super .htaccess file - by El Forum - 07-26-2008, 08:18 AM
Super .htaccess file - by El Forum - 07-29-2008, 05:38 AM
Super .htaccess file - by El Forum - 07-29-2008, 11:25 AM
Super .htaccess file - by El Forum - 08-01-2008, 07:03 PM
Super .htaccess file - by El Forum - 08-04-2008, 10:18 AM
Super .htaccess file - by El Forum - 08-07-2008, 03:42 PM
Super .htaccess file - by El Forum - 08-07-2008, 03:53 PM
Super .htaccess file - by El Forum - 08-07-2008, 08:01 PM
Super .htaccess file - by El Forum - 08-25-2008, 03:39 AM
Super .htaccess file - by El Forum - 08-25-2008, 08:50 AM
Super .htaccess file - by El Forum - 08-25-2008, 10:06 AM
Super .htaccess file - by El Forum - 08-25-2008, 10:13 AM
Super .htaccess file - by El Forum - 08-25-2008, 10:30 AM
Super .htaccess file - by El Forum - 11-05-2008, 02:06 PM
Super .htaccess file - by El Forum - 01-30-2009, 10:19 AM
Super .htaccess file - by El Forum - 02-04-2009, 11:00 AM
Super .htaccess file - by El Forum - 02-04-2009, 02:27 PM
Super .htaccess file - by El Forum - 02-04-2009, 02:59 PM
Super .htaccess file - by El Forum - 02-05-2009, 04:25 PM
Super .htaccess file - by El Forum - 04-13-2009, 03:27 PM



Theme © iAndrew 2016 - Forum software by © MyBB