Welcome Guest, Not a member yet? Register   Sign In
'welcome' not showing up as expected
#7

[eluser]LuckyFella73[/eluser]
You could test an other htaccess:
Code:
<IfModule mod_rewrite.c>
    # Turn on the Rewrite Engine
    RewriteEngine On
    
    # If the file or directory exists, show it
    RewriteCond %{REQUEST_FILENAME} -f [OR]
    RewriteCond %{REQUEST_FILENAME} -d
    RewriteRule ^(.+) - [PT,L]
    
    # Blank queries get sent to the index
    RewriteRule ^$ index.php [L]
    
    # All other queries get sent to the index as index.php/whatever
    RewriteRule ^(.*)$ index.php/$1 [L]
</IfModule>

It works on the most servers I had a CI project.
I didn't have to define a RewriteBase even if the project was
placed in a subfolder. I'm no htaccess pro but you could
give it a try ..


Messages In This Thread
'welcome' not showing up as expected - by El Forum - 08-29-2008, 04:36 PM
'welcome' not showing up as expected - by El Forum - 09-02-2008, 08:12 AM
'welcome' not showing up as expected - by El Forum - 09-02-2008, 08:53 AM
'welcome' not showing up as expected - by El Forum - 09-02-2008, 09:12 AM
'welcome' not showing up as expected - by El Forum - 09-02-2008, 09:52 AM
'welcome' not showing up as expected - by El Forum - 09-02-2008, 10:17 AM
'welcome' not showing up as expected - by El Forum - 09-02-2008, 10:20 AM
'welcome' not showing up as expected - by El Forum - 09-02-2008, 10:58 AM
'welcome' not showing up as expected - by El Forum - 09-02-2008, 11:10 AM
'welcome' not showing up as expected - by El Forum - 09-02-2008, 11:11 AM
'welcome' not showing up as expected - by El Forum - 09-02-2008, 11:15 AM
'welcome' not showing up as expected - by El Forum - 09-02-2008, 12:10 PM
'welcome' not showing up as expected - by El Forum - 09-02-2008, 12:23 PM



Theme © iAndrew 2016 - Forum software by © MyBB