Welcome Guest, Not a member yet? Register   Sign In
Problems viewing Images. [resolved]
#6

[eluser]Dam1an[/eluser]
If you don't know what it is, then I assume you don't use it so that can't be the cause of the problem

The htaccess file lets you remove the index.php from the URL by routing all requests to be via index.php (which is transparent to the end user)

Code:
DirectoryIndex index.php
RewriteEngine on
RewriteCond $1 !^(index\.php|images|css|js|robots\.txt|favicon\.ico|license.txt)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ ./index.php/$1 [L,QSA]

As you can see in the rewrite condition, it passes anything that isn't an image, css, js etc onto the index.php


Messages In This Thread
Problems viewing Images. [resolved] - by El Forum - 06-05-2009, 09:33 AM
Problems viewing Images. [resolved] - by El Forum - 06-05-2009, 09:37 AM
Problems viewing Images. [resolved] - by El Forum - 06-05-2009, 09:39 AM
Problems viewing Images. [resolved] - by El Forum - 06-05-2009, 09:40 AM
Problems viewing Images. [resolved] - by El Forum - 06-05-2009, 09:40 AM
Problems viewing Images. [resolved] - by El Forum - 06-05-2009, 09:42 AM
Problems viewing Images. [resolved] - by El Forum - 06-05-2009, 09:46 AM
Problems viewing Images. [resolved] - by El Forum - 06-05-2009, 09:50 AM
Problems viewing Images. [resolved] - by El Forum - 06-05-2009, 09:55 AM
Problems viewing Images. [resolved] - by El Forum - 06-05-2009, 10:25 AM
Problems viewing Images. [resolved] - by El Forum - 06-05-2009, 10:26 AM



Theme © iAndrew 2016 - Forum software by © MyBB