0
votes
1answer
32 views

CodeIgniter Url rewriting similar to Pinterest and Twitter

I have just started with CodeIgniter and I am creating a website where users log in. I want to know how I can write custom names to the URL of a logged in user similar to twitter and pinterest based ...
2
votes
2answers
33 views

URL Mod Rewriting

I am using codeigniter for my website, and before theres always that index.php? on my every url or links, for example mysite.com/index.php?/about Google has indexed all of my urls with that ...
0
votes
1answer
25 views

Codeigniter route

I have this url http://mysite.local/awesome-shirts.html I want to route it to http://mysite.local/category/shirts/awesome-shirts.html The third segment of the url is dynamic. Does anyone knows ...
0
votes
2answers
32 views

CodeIgniter URL_TITLE model?

Here is example of URl_title CI, i know this code is do this $title = "Whats wrong with CSS"; $url_title = url_title($title, '_', TRUE); // Produces: whats_wrong_with_css But hot to revers, is ...
0
votes
1answer
15 views

CodeIgniter just simple URl Rewrite friendlyurl

Hello I have tried everywhere and i have a part solution:( I have this kind of URL http://www.somesite.com/about?koje=gore The original is http://www.somesite.com/index.php/drey/about?koje=gore ...
0
votes
1answer
31 views

CodeIgniter URL Rewrite

I have found so many examples of URL Rewrite in CI, but not a final and good solution, i have url like this www.somesite.com/index.php/tehnicki/tekstovi I want to have url like this ...
0
votes
1answer
26 views

Not able to call class function from URL

I'm VERY new to CodeIgniter and am having trouble calling a function from within my default class. Controller <?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); class ...
-1
votes
5answers
220 views

Can 2 .htaccess files block URL rewriting

I have a codeigniter project inside the b1 folder in my public_html folder: mydomain.com/b1/controller/function I want to change it to: mydomain.com/controller/function in the browser bar using ...
1
vote
1answer
52 views

i18n URL format with language parameter always in URL

I'm working on a new website and I have a question regarding internalization (i18n) and SEO. Here's the case. I'm using this CodeIgniter code to translate my website in 2 languages. Let's say these ...
0
votes
1answer
38 views

url rewritting using .htaccess

I am using codeigniter.There is a url patern: localhost/mysite/application/assets/projects/projectname The projectname part is dynamic. Now I want to rewrite that url to: ...
0
votes
1answer
49 views

Handle URL in CodeIgniter

I have a url like "www.site.com/index.php/details/productname" and I get 404 error on that link in codeigniter but the URL www.site.com/index.php/details/ is working fine. I want ...
0
votes
2answers
35 views

htaccess RewriteRule in CodeIgniter

I got this problem with htaccess. I use CodeIgniter and I removed 'index.php' from link: RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteCond $1 ...
0
votes
1answer
110 views

htaccess redirection not working in codeigniter

I have my .htaccess code as follows : <IfModule mod_rewrite.c> RewriteEngine On RewriteBase /annsenglishmediumschool RewriteCond %{HTTP_HOST} ^(.+?)\.annsenglishmediumschool\.com$ ...
0
votes
2answers
84 views

htaccess redirection in codeigniter

I have the following code in my .htaccess: <IfModule mod_rewrite.c> RewriteEngine On RewriteBase /annsenglishmediumschool RewriteCond %{HTTP_HOST} shops.annsenglishmediumschool.com ...
0
votes
1answer
51 views

.htaccess redirection in codeigniter

I have the following rule in my .htaccess : <IfModule mod_rewrite.c> RewriteEngine On RewriteCond %{HTTP_HOST} !^(www.)?annsenglishmediumschool.com$ [NC] RewriteCond %{HTTP_HOST} ...
0
votes
3answers
76 views

Redirect Url in codeigniter

I want to redirect a url in my lcalhost ,as when user types : mystring.localhost/CI to localhost/CI/Mycontroller/Myaction/mystring in codeigniter .its now showing Server not found and says browser ...
1
vote
1answer
112 views

Redirecting a Url in codeIgniter to a root folder

I have a folder structure like this in Code igniter : - - www - CI - application - config - config.php - adminfolder - system - css - jss And now ...
0
votes
1answer
55 views

Custom URL rewriting not working in codeigniter

I use the code below in a Codeigniter htaccess file RewriteRule ^([^.]+)-vacation$ /search?location=$1 When i access it with the url www.example.com/moscow-vacation, it gives me a 404 error. I ...
2
votes
1answer
171 views

CodeIgniter URL routing doesn't work

I am using Ubuntu 12.10. And I am having trouble removing the "index.php" from my codeigniter site URL. My .htaccess files looks like this, I have my code inside hmvcExample folder. * ...
0
votes
2answers
133 views

CodeIgniter URL not found

enter code hereI got this code in my .htaccess file: RewriteEngine On RewriteBase /projFolder ### Canonicalize codeigniter URLs # If your default controller is something other than # "welcome" you ...
0
votes
1answer
34 views

using different url for a file in codeigniter

Hello I want to change the URL of a page at the moment it looks like www.domain.com/privacy and I want it to look like www.domain.com/privacy-policy since it looks much better. Is there a ...
0
votes
0answers
46 views

Codeigniter Routing with regular expression

I am new to codeigniter and i dont know to route this url ...
0
votes
1answer
63 views

URI routing Codeigniter

Having problems with routing in CodeIgniter. Here's my routes.php $route['default_controller'] = "site/site/index/$1"; $route['404_override'] = ''; $route['admin'] = 'admin/index'; I'm using ...
0
votes
4answers
283 views

How to set dynamic route to use slug in CodeIgniter?

Let's say that I have a controller named pages and there is a method slug_on_the_fly public function slug_on_the_fly($slug) How would my route for this look like? E.g. for blog controller it ...
-1
votes
1answer
46 views

CodeIgniter URL Rewrite then get data select? [closed]

I want to rewrite URLs. I've already removed index.php. But; site.com/controller/function?haber=deneme_haberi or site.com/controller/function?cat=teknoloji&haber=deneme_haberi I want to; ...
0
votes
3answers
88 views

Remove index.php from url not working

This is my .htaccess file: RewriteEngine On RewriteBase /mydomainname.com/ RewriteCond $1 !^(index\.php|images|assets|robots\.txt) RewriteRule ^(.*)$ /index.php/$1 [L] This ...
0
votes
1answer
184 views

Codeigniter URL redirection and .htaccess Redirect directive

This is a minor problem, but I'd really like to know what's going on. I've just converted my site to CI from static HTML. Being a good web admin, after reorganising a site I try to put Apache ...
0
votes
0answers
82 views

route rules for url rewriting in codeigniter

How can I write rewrite rules in routes.pgp in codeigniter for my following requirements: I have a category table in DB. With names like residents, business, education etc. So, $categories = ...
1
vote
1answer
112 views

Accessing Other Functions In My Main Controller File

How can i access functions in my main controller? I installed codeigniter in a subfolder on godaddy webhosting. "testapps" is the name of the folder containing CI. My default controller is "main" and ...
2
votes
2answers
91 views

Need help in codeigniter url

I developed a website in Codeigniter, but it appends a hash string at the end of every url. For example: http://my_website.com/#.UR46O6Wj12I I want to remove this hash string after every url or ...
-1
votes
2answers
83 views

CodeIgniter - make URL shorter

I'm new to CodeIgniter. I make one site and i want my url to be shorter. For example, now the url is http://example.com/planner/planner/index.php/planner/main and i want to be ...
0
votes
1answer
137 views

Change htaccess Joomla to work with CI in subfolder

Curently i've got main site running joomla 1.5 and additional app made on Codeignter in a subfolder. When i open app index dir url - www.mysite.com/app - it's ok, but if i try to use app deeper, like ...
0
votes
2answers
81 views

How can I shorten routes in Codeigniter for certain requests?

I have a page that has this category URL website.com/category/view/honda-red-car and I just want it to say http://website.com/honda-red-car no html or php and get rid of the category view in the URL.. ...
0
votes
0answers
73 views

URL Rewrite in codeigniter, Apache

In codeigniter I am getting URL localhost/ci-referal/a_anchor?jdesc=Assistant Manager - DNA E-Business&jdid=4&lv=1 I want url rewrite as localhost/ci-referal/a_anchor/Assistant Manager - ...
0
votes
1answer
213 views

How to rewrite URL using Codeigniter route or htaccess file?

I have created a Home page controller with a Page method so that it can load inner page views. So I simply pass the Page name as an argument to Page method and it loads that specific view. E.g. ...
1
vote
1answer
163 views

Server ignoring subdirectory htaccess file, going straight to root htaccess

I have an application that utilizes Codeigniter and SLIR (Smart Lencioni Image Resizer https://github.com/lencioni/SLIR). SLIR allows you to resize images using an intuitive URI structure. For ...
1
vote
4answers
104 views

Rewrite URL if controller is not existing in codeigniter

Rewrite URL if user tried to access any non existing controller. Ex:- If user tried to access http://example.com/project/anyvalue . In my program there is no controller with name 'anyvalue'. In this ...
0
votes
1answer
177 views

IIS 7 URL Rewriting

I have been working this one for a few hours now trying get this to work. I have a CodeIgniter website that use to be on an Apache server running fine. I was using the Apache URL Rewriter for the URL ...
-2
votes
1answer
161 views

Why do i have characters “#_=_” appended in my URL after logging in from facebook into my App [duplicate]

Possible Duplicate: Facebook Callback appends ‘#_=_’ to Return URL Well its not an problem that i am facing since its not mixing up in any way with my code, but just an curiosity to know ...
-2
votes
2answers
245 views

How to configure CodeIgniter on windows web hosting server for url rewriting? [closed]

Hey this is my site: http://iconsecurities.com.pk/. I am running it on windows based web-server. It's written using CodeIgniter framework. When I go to my site it's just opening the home page, and, ...
3
votes
1answer
227 views

404 error when i hosted my site in server

Am new to CodeIgniter and I developed a small website using this. My site is working fine in localhost. But when I move my website to the web server, the first Welcome controller is working fine, ...
0
votes
1answer
145 views

codeigniter htaccess rewrites the url to the BASEPATH../

i have a website that i made with codeigniter it works relativly fine on the local machine but when i uploaded it to the server it gives me a 500 error, and the error is gone when i remove the ...
0
votes
4answers
270 views

Pretty URLs for Code igniter

I want to know whether it is possible to write pretty URLs in Code igniter or not? I mean i have a code igniter project in which i am displaying data from uri segments like this: ...
1
vote
3answers
51 views

Codeigniter wont redirect in netbeans

I have got this url: http://localhost:85/WebCamClone/Home But it will only load like this: http://localhost:85/WebCamClone/index.php/Home I tried to put htaccess rule like this one: ...
0
votes
3answers
97 views

Apache URL Rewrite How To

I have never gotten into regex stuff or apache rewrite stuff but I've done a big ecommerce site for a customer and he's just now asking me if I can do URL rewrites for his store. I have 2 that I need ...
0
votes
2answers
94 views

username as controller codeigniter

I am trying to develop a social network where people can visit mysite.com/username. I used the _remap function and I got it working, however it is not loading any of my other controllers. Can someone ...
0
votes
1answer
96 views

CodeIgniter prevent display of controller/method in URL

I am using CodeIgniter and I have a route set up as follows: $route["(:num)"] ="login/login_by_id/$1"; This basically means that when the URL looks like this: http://mydomain.com/12345 This will ...
1
vote
1answer
155 views

Login url redirects to home page after hiding index.php using htaccess in codeigniter - [Codeigniter url redirection issue]

I am developing a shopping cart site using Codeigniter Gocart script. I hid index.php using htaccess. When I try to login using localhost/project143/secure/login, it works fine and goes to login page. ...
0
votes
2answers
130 views

Getting rid of index in URL when using CodeIgniter and HTTPS

I've been working on a codeigniter application. When I first started developing it I used the following url structure: http://somewebsite.com/application/login/ I changed the site to run over https ...
0
votes
1answer
106 views

How to delete the name of the controller in the URL with CodeIgniter?

I have urls that all contain /main/ in the url as it is my main controller. I'd like to get rid of it. I understood in the User Guide that the routing class will only re-route my URL, not hide a part ...

1 2 3