Mod Rewrite

Problems with the Linux version of XAMPP, questions, comments, and anything related.

Mod Rewrite

Postby bebbbo » 22. November 2014 20:37

Dear all,
I have installed last version of Xampp (5.6.3-0) on Linux Ubuntu 14.04.

I have installed the last version of Codeigniter (2.2) in my directory /opt/lampp/htdocs/mysite

I'm trying to use the mod rewrite but it doesn't work.
In Phpinfo I've seen that the module "mod_rewrite" is loaded.

I created this .htaccess file in the root directory /opt/lampp/htdocs/mysite to use the mod rewrite in Codeigniter but it doesn't work

Code: Select all
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /mysite/

#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]

</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>


Could you help me please?

Thank you
bebbbo
 
Posts: 1
Joined: 22. November 2014 20:31
Operating System: Linux Ubuntu

Re: Mod Rewrite

Postby Nobbie » 24. November 2014 11:29

bebbbo wrote:#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]


DId you read these instructions??
Nobbie
 
Posts: 13183
Joined: 09. March 2008 13:04


Return to XAMPP for Linux

Who is online

Users browsing this forum: No registered users and 47 guests