Welcome Guest, Not a member yet? Register   Sign In
Need help with mod_rewrite!
#2

[eluser]TheFuzzy0ne[/eluser]
Welcome to the CodeIgniter forums!

Is mod_rewrite enabled?

If it is, first of all (if you're able to), I would recommend you add the Web root directory for your application as a virtual host. Then you can edit your hosts file, and add something like:

Code:
mysite.imaginarydomain.com    127.0.0.1

Then you should be able to access your site using the URL above.

After that, this .htaccess file should do the trick.

Code:
<IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteCond %{REQUEST_URI} ^/(system|application|html_store)
    RewriteRule ^(.*)$ /index.php?/$1 [L]

    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^(.*)$ /index.php?/$1 [L]
</IfModule>


Messages In This Thread
Need help with mod_rewrite! - by El Forum - 04-28-2013, 01:04 PM
Need help with mod_rewrite! - by El Forum - 04-28-2013, 02:00 PM
Need help with mod_rewrite! - by El Forum - 04-28-2013, 03:20 PM
Need help with mod_rewrite! - by El Forum - 04-29-2013, 03:13 AM



Theme © iAndrew 2016 - Forum software by © MyBB