Welcome Guest, Not a member yet? Register   Sign In
Problem with .htaccess and slash in URI
#1

(This post was last modified: 06-28-2016, 11:15 PM by mixinix.)

URI will be redirected to http://ci4.dev/public/<controller>/<...> when I'm accessing controller with add slash at the end.

Like this:

Code:
   http://ci4.dev/home/

    
will be redirected to:

Code:
   http://ci4.dev/public/home => Not Found!

Normal:

Code:
   http://ci4.dev/home

    
The .htaccess file:

Code:
   # Redirect Trailing Slashes...
   RewriteRule ^(.*)/$ /public/$1 [L,R=301]


Problem solved with this change (removed '/public'):

Code:
  # Redirect Trailing Slashes...
   RewriteRule ^(.*)/$ /$1 [L,R=301]


    
Apache: 2.4.18
ENVIRONMENT: development
Reply




Theme © iAndrew 2016 - Forum software by © MyBB