Welcome Guest, Not a member yet? Register   Sign In
problem with mod rewrite
#1

[eluser]vindhyareddy[/eluser]
I am trying to make changes and create a .htaccess file to prevent the use of index.php in my url.

I have my code set up on localhost.

The code is in ./www/devit

I am writing the following code under .htaccess - and placing it at ./www/devit/.htaccess

Code:
<IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase http://localhost/devit
    

    #Removes access to the system folder by users.
    #Additionally this will allow you to create a System.php controller,
    #previously this would not have been possible.
    #'system' can be replaced if you have renamed your system folder.
    RewriteCond %{REQUEST_URI} ^system.*
    RewriteRule ^(.*)$ /index.php/$1 [L]
    
    #When your application folder isn't in the system folder
    #This snippet prevents user access to the application folder
    #Submitted by: Fabdrol
    #Rename 'application' to your applications folder name.
    RewriteCond %{REQUEST_URI} ^application.*
    RewriteRule ^(.*)$ /index.php/$1 [L]

    #Checks to see if the user is attempting to access a valid file,
    #such as an image or css document, if this isn't true it sends the
    #request to index.php
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^(.*)$ index.php/$1 [L]
</IfModule>

<IfModule !mod_rewrite.c>
    # If we don't have mod_rewrite installed, all 404's
    # can be sent to index.php, and everything works as normal.
    # Submitted by: ElliotHaughin

    ErrorDocument 404 /index.php
</IfModule>

Inorder to access a controller by name users, I need to use the url as :
http://localhost/devit/index.php/users/id/1

I want this to change to:
http://localhost/devit/users/id/1

But when I put this .htaccess file in the devit folder I am getting a 500 internal server error.

Can someone guide me with this? What is the probable mistake I am making?

FYI,
config.php is :
Code:
&lt;?php  if ( ! defined('BASEPATH')) exit('No direct script access allowed');

$config['base_url']    = "http://localhost/devit/";

$config['index_page'] = '';

/*
|--------------------------------------------------------------------------
| URI PROTOCOL
|--------------------------------------------------------------------------
|
| This item determines which server global should be used to retrieve the
| URI string.  The default setting of "AUTO" works for most servers.
| If your links do not seem to work, try one of the other delicious flavors:
|
| 'AUTO'            Default - auto detects
| 'PATH_INFO'        Uses the PATH_INFO
| 'QUERY_STRING'    Uses the QUERY_STRING
| 'REQUEST_URI'        Uses the REQUEST_URI
| 'ORIG_PATH_INFO'    Uses the ORIG_PATH_INFO
|
*/
//$config['uri_protocol']    = "PATH_INFO"; // You need to use PATH_INFO to enable ?var=somthing strings
$config['uri_protocol'] = 'AUTO';


$config['url_suffix'] = "";

$config['language']    = "english";

$config['charset'] = "UTF-8";

$config['enable_hooks'] = FALSE;


$config['subclass_prefix'] = 'MY_';

.....

Any suggestions or solutions????


Messages In This Thread
problem with mod rewrite - by El Forum - 07-20-2010, 03:27 PM
problem with mod rewrite - by El Forum - 07-20-2010, 07:44 PM
problem with mod rewrite - by El Forum - 07-20-2010, 08:08 PM
problem with mod rewrite - by El Forum - 07-21-2010, 08:14 AM
problem with mod rewrite - by El Forum - 07-21-2010, 09:45 AM
problem with mod rewrite - by El Forum - 07-21-2010, 09:59 AM
problem with mod rewrite - by El Forum - 07-21-2010, 10:09 AM



Theme © iAndrew 2016 - Forum software by © MyBB