Welcome Guest, Not a member yet? Register   Sign In
Redirect Problem
#4

This can be a number of things.

Is your Editors root path for your project setup correct?

Do you need a sub path mapping in your editor?

If you changed the CodeIgniter ./system and ./application paths did you set these in index.php ?

VHOST Settings:

Code:
#--------------------------------------------------------------
# HTTP:
#--------------------------------------------------------------
<VirtualHost *:80>
    DocumentRoot "C:/xampp/htdocs/myproject/public_html"
    ServerName myproject.localhost
    ServerAlias myproject.localhost
    <Directory "C:/xampp/htdocs/myproject/public_html">
        Order allow,deny
        Allow from all
        AllowOverride All
        Require all granted
    </Directory>
</VirtualHost>

#--------------------------------------------------------------
# HTTPS:
#--------------------------------------------------------------
<VirtualHost *:443>
    DocumentRoot "C:/xampp/htdocs/myproject/public_html"
    ServerName myproject.localhost
    ServerAlias myproject.localhost
    SSLEngine on
    SSLCertificateFile "conf/ssl.crt/server.crt"
    SSLCertificateKeyFile "conf/ssl.key/server.key"
    <Directory "C:/xampp/htdocs/myproject/public_html">
        Options All
        AllowOverride All
        Require all granted
    </Directory>
</VirtualHost>

#--------------------------------------------------------------
What did you Try? What did you Get? What did you Expect?

Joined CodeIgniter Community 2009.  ( Skype: insitfx )
Reply


Messages In This Thread
Redirect Problem - by Navish31 - 02-15-2018, 03:48 AM
RE: Redirect Problem - by Elias - 02-15-2018, 07:37 AM
RE: Redirect Problem - by Navish31 - 02-15-2018, 08:30 AM
RE: Redirect Problem - by dave friend - 02-16-2018, 09:13 AM
RE: Redirect Problem - by InsiteFX - 02-15-2018, 10:58 AM
RE: Redirect Problem - by Navish31 - 02-16-2018, 12:19 AM
RE: Redirect Problem - by InsiteFX - 02-16-2018, 04:12 AM



Theme © iAndrew 2016 - Forum software by © MyBB