CodeIgniter Forums
Redirect Issue - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20)
+--- Forum: Archived Development & Programming (https://forum.codeigniter.com/forumdisplay.php?fid=23)
+--- Thread: Redirect Issue (/showthread.php?tid=60292)



Redirect Issue - El Forum - 02-23-2014

[eluser]Uresh Patel[/eluser]
Hello,

I am Uresh.I have issue with page redirection with server.(LINUX SHARED SERVER)

I have front-end of web site.
I have superadmin panel.
I have developer panel.
Means three types of users will use my site.
This is my directory path.

CONTROLLERS

-> application\controllers\ = front end controllers

-> application\controllers\admin = superadmin controllers

-> application\controllers\developers = developers controllers

SAME IN VIEW FILES

-> application\view\ = front end controllers

-> application\view\admin = superadmin controllers

-> application\view\developers = developers controllers

I am attaching my ".htaccess" file along

Code:
RewriteEngine on
RewriteCond $1 !^(index\.php|images|robots\.txt)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?/$1 [L]

CODE : pastebin.com/CDxi2veP
URL : http://hyperlinkserver.com/myappstore/admin/Admin_User/login

Please anyone can guide me !!!

Thank You in Advance


Redirect Issue - El Forum - 02-24-2014

[eluser]InsiteFX[/eluser]
Code:
<IfModule mod_rewrite.c>

# pass the default character set
AddDefaultCharset utf-8

    # Make sure directory listing is disabled
Options +FollowSymLinks -Indexes
RewriteEngine on

# NOTICE: If you get a 404 play with combinations of the following commented out lines
#AllowOverride All
RewriteBase /

# Restrict your site to only one domain
# !important USE ONLY ONE OPTION

# Option 1: To rewrite "www.domain.com -> domain.com" uncomment the following lines.
#RewriteCond %{HTTPS} !=on
#RewriteCond %{HTTP_HOST} ^www\.(.+)$ [NC]
#RewriteRule ^(.*)$ http://%1/$1 [R=301,L]

# Option 2: To rewrite "domain.com -> www.domain.com" uncomment the following lines.
#RewriteCond %{HTTPS} !=on
#RewriteCond %{HTTP_HOST} !^www\..+$ [NC]
#RewriteCond %{HTTP_HOST} (.+)$ [NC]
#RewriteRule ^(.*)$ http://www.%1/$1 [R=301,L]

# Remove index.php from URL
RewriteCond %{HTTP:X-Requested-With} !^XMLHttpRequest$
RewriteCond %{THE_REQUEST}    ^[^/]*/index\.php [NC]
RewriteRule ^index\.php(.*)$   $1 [R=301,NS,L]

# Send request via index.php (again, not if its a real file or folder)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d

# deal with php5-cgi first
<IfModule mod_fcgid.c>
  RewriteRule ^(.*)$ index.php?/$1 [QSA,L]
</IfModule>

<IfModule !mod_fcgid.c>

  # for normal Apache installations
  <IfModule mod_php5.c>
   RewriteRule ^(.*)$ index.php/$1 [QSA,L]
  </IfModule>

  # for Apache FGCI installations
  <IfModule !mod_php5.c>
   RewriteRule ^(.*)$ index.php?/$1 [QSA,L]
  </IfModule>

</IfModule>

</IfModule>

Also see this:
CodeIgniter User Guide - Routing



Redirect Issue - El Forum - 02-24-2014

[eluser]InsiteFX[/eluser]
Double post - Please remove.



Redirect Issue - El Forum - 02-27-2014

[eluser]Uresh Patel[/eluser]
I think redirect() is not working on my server.


Redirect Issue - El Forum - 03-01-2014

[eluser]Uresh Patel[/eluser]
Hello,

Why my redirect() is not working.In some case it is working and in some case it is not working.




Redirect Issue - El Forum - 03-01-2014

[eluser]Uresh Patel[/eluser]
I found that ,when i enable "index.php" and remove .htaccess redirect work perfectly.
But when i enable .htaccess then issue comes .