i have installed in the localhost for testing but it is not working.
In Xampp
1) My URL is http://localhost/table/
2) when i click on reservation tab it is always redirecting to http://localhost/xampp/
Help me in resolving
Go to your folder in xampp and open .htaccess file ( C:\xampp\htdocs\pavan\.htaccess )
In this page you will find ( RewriteBase / ) and replace it with your folder name in xampp ( RewriteBase /pavan )
If your folder name is pavan replace it into that.
# 1.To use URL Alias you need to be running apache with mod_rewrite enabled.
Options +FollowSymlinks
# Prevent Directoy listing
Options -Indexes
<IfModule mod_rewrite.c>
# Turn on URL rewriting
RewriteEngine On
# !IMPORTANT! Set your RewriteBase here and don't forget trailing and leading slashes.
# If your page resides at http://www.example.com/mypage then use
# RewriteBase /mypage
RewriteBase /pavan
RewriteRule ^assets/downloads/(.*) not_found [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?/$1 [L]
</IfModule>