0
votes
0answers
10 views

url rewritting without changing actual logic (apache)

My code architecture is as follows project_folder-->index.php project_folder->pages(folder) all the request goes to index.php as index.php?page=page_name and my index.php has the following ...
1
vote
0answers
56 views

MVC Internal Server Error

I'm trying to build an PHP MVC. I currently watching this tutorial link But from the start its not working. I'm running it in WAMP It gives me this error: Internal Server Error The server ...
1
vote
0answers
21 views

Friendly url - url routing

I have a blog site.I have main categories and articles for each category. Each article and category have a id and queries process for these id's. I want to change my url system to friendly urls. For ...
0
votes
0answers
51 views

Allow access to 'subdirectory' created by URL router with Apache

I have a development server for a website I am re-developing with an API backbone. I want the domain to be protected from outside access, so I require a valid htpasswd user on all domains hosted on ...
-2
votes
4answers
90 views

Method name must be a string [closed]

I got an error : Fatal error: Method name must be a string in Z:\home\localhost\www\oop\mvc_homework\index.php on line 9 $url = explode("/",$_GET['url']); require "controllers/".$url[0].".php"; ...
0
votes
1answer
135 views

FuelPHP routes.php not working

I have a very basic setup with a new Fuel checkout. fuel/app/classes/controllers/auth.php class Controller_Auth extends Controller { public function action_login() { return ...
0
votes
1answer
112 views

PHP Rest, .htaccess Routing

I'm using the REST API from this repo: https://github.com/marcj/php-rest-service/tree/master/RestService I'm running the REST service from a subdirectory /mydir. However, anything other than / does ...
0
votes
1answer
159 views

.htaccess rewriting PATH_INFO vars to empty before passing to template; not removing index.php from url

Morning everyone, I'm hoping this will be an easy one! (I haven't even had coffee yet why am I up so early?!) Anyway.. got a two-parter for you: First (basic) issue that I'm trying to remove ...
0
votes
1answer
264 views

htaccess rewrite rule for admin panel

I have the url pattern in my web application like this "www.mysitename.com/foldername/controller/method". And all requested pages are redirected to index.php first on root folder and then it process ...
0
votes
2answers
59 views

HTACCESS Custom redirect based on server URL and TLD

I got the following setup My website is located on at this server jdbartist.bplaced.net/gkn I bought a TLD (gamekeynexus.com) and set it up to redirect to the gkn directory, so when I type my tld ...
0
votes
1answer
136 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
109 views

Rewrite Url (URL Routing) in .htaccess

My directories are like: http://www.mydomain.com/macbook-computer http://www.mydomain.com/sony-computer http://www.mydomain.com/lenovo-computer I want to make that, if a user type ...
0
votes
2answers
111 views

.Htaccess - Get new parameter in mini MVC PHP framework

I have google this, but could not find anything and I cant figure it out by myself. I have created a mini MVC PHP Freamework and have this .htaccess file: DirectoryIndex index.php RewriteCond ...
0
votes
1answer
42 views

Simple 301 ReDirect

I currently use this to forward my URLS. But I had an error and I need to forward all /search/search-term/1/ >> /search/search-term/ /search/search-term/2/ >> /search/search-term/2/ ...
0
votes
1answer
222 views

Htaccess Rewrite Rules for MVC

I'm having on hell of a time trying to figure out rewrite rules for my MVC microframework. I'm following the pattern url.com/:controller/:action/:params but when assets are requested (such as css, js, ...
0
votes
1answer
336 views

htaccess routing through index.php without allowing www

I have a shared hosting account through GoDaddy, and the site I have on it uses .htaccess to route all requests through index.php. This works fine on its own. RewriteCond %{REQUEST_FILENAME} !-f ...
-1
votes
1answer
51 views

.htaccess - How to clean the address bar? [closed]

This is my htaccess configuration right now: RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)$ index.php?url=$1 [L,QSA] My problem is that ...
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
1answer
50 views

How to redirect of all url to 1 url only using .httaccess

Can any one help me to redirect of all url to 1 url only using .httaccess For example, all the following URLs... "http//josephm.webatu.com/index.php" "http//josephm.webatu.com/login.php" ...
1
vote
1answer
121 views

How to change my URL structure on old php site using database values?

I've been tasked with making the URLs for an old website "pretty" It's a real estate website with a few dozen buildings and maybe 100ish total apartment listings. Current urls are like: (i was able ...
0
votes
3answers
158 views

Routing URL Path with PHP and Apache

I am trying to create a nice url structure for my site. My router class will only work if the url is in the style of ?something=value. How do I get it so it will work like: /something/value In my ...
1
vote
1answer
98 views

Codeigniter trying to get a specific URL pattern

I have two models called Lessons and Parts. Every lesson has many parts. I'm new to MVC and to Codeigniter but the desired URL is this: example.com/lesson/2/part/3 I assume I'm supposed to do ...
0
votes
2answers
64 views

Level of obscurity of destination URLs via mod_rewrite

To achieve a single layer of content delivery security, I'm looking into the possibility of obscuring a resource URL via an .htaccess RewriteRule: RewriteEngine on RewriteBase /js/ RewriteRule ...
0
votes
0answers
60 views

images requests go to the wrong folder need to reroute

Hello I know there are similar questions to this one but i have a little bit different of a spin on the information I need. What I have is an xml file that cannot be edited because of certains rights ...
0
votes
1answer
21 views

htaccess codes behaves differently when written in single line and when written in two different lines

I was trying to learn the htaccess basics but initial step made me go crazy and lost some precious time.. htaccess codes behaves differently when written in single line and when written in two ...
1
vote
2answers
126 views

CakePHP branch routing

I am trying to test some new features on a live site. My goal is to have a prefix ('dev', for example) and have that prefix display the complete site with default actions, except those I define as ...
0
votes
1answer
457 views

Yii Setting a custom URL format

What i am trying to do is to create a custom rule in Yii for URL management. The general URL rules are set in main.php 'urlManager'=>array( 'urlFormat'=>'path', ...
3
votes
2answers
208 views

Access to new php files

I was helping a friend with a website and I created few php pages that he then copied to the root. The problem is that the htaccess file is setup in a way that I'm not able to access any of the new ...
0
votes
1answer
103 views

Need a Generic way to Create SEO friendly URL

i have searched a lot and implemented many many Regular Expression in my .htaccess file but can not succeeded *How to find Generic way that make my url SEO friendly * currently this is in my ...
0
votes
2answers
147 views

Redirect all URL except one query string

I have 2 domain mcleancenter.org and aldentheatre.org,Both pointing to one directory. I want to redirect all URLs which don't have "alden-theatre" to mcleancenter.org. And all URLs which have ...
0
votes
3answers
140 views

i18n URIs with CI Routing or mod_rewrite

I'm trying to clean up my URIs on a multi-language CI site by changing the segment containing the language name to just the two-character language code. Currently, my URIs look like this: ...
4
votes
1answer
437 views

php htaccess redirect to bootstrap file prevents 404 errors with css files etc

I have been working on making own framework and focusing on learning more advanced programming practices, than I learned at college. I use .htaccess to redirect all page request to my bootstrap file ...
2
votes
2answers
1k views

php mvc and .htaccess url rewrite

I am a new programmer, currently learning php mvc. I am building a framework/mvc system from scratch...Now I am facing problem with .htaccess. example.com = localhost // unable to post question ...
0
votes
0answers
153 views

codeigniter mod_rewrite

I'm trying to set up some routing rules for my web application which I am developing with CodeIgniter. I've come face to face with a rather strange mod_rewrite/Codeigniter issue and hope that someone ...
0
votes
1answer
94 views

.htaccess RewriteRule using @ sign?

I am trying to have a URL that would look like: mysite.com/@username Which would route to something like: subdomain.mysite.com/user/@username I'm terrible with RewriteRules and have been ...
1
vote
2answers
289 views

Is it better to have a php front loader or use .htaccess to load controllers?

I came across this article, How to implement a front controller. The article suggests that a better way to load controllers is to leave it to apache as this is what it was designed for. So I have a ...
0
votes
0answers
114 views

Fallback to default script if pretty url router could not fing a match

I am implementing a pretty url router for my (php) application. Here is what I placed in .htaccess RewriteEngine on RewriteRule (.+)? url_router.php in url_router.php, I parse the requested url and ...
1
vote
2answers
878 views

Most effective way to code SEO friendly URLs?

I currently use .htaccess and PHP to parse URLs in the following way: URL: http://blah.com/article/123_this-that-and-the-other .htaccess: RewriteEngine On RewriteRule ^article/([0-9]+)_(.+)/?$ ...
2
votes
1answer
232 views

Multiple Domains to One Dynamic Site

I am building a website for a company who has multiple users/sale people and each user needs their own website. What I want to accomplish is building one site that pulls in each users information ...
0
votes
1answer
549 views

htaccess URL routing for PHP MVC?

I've been searching and have yet to find an article to help me. I'm very unfamiliar when it comes to the rewrite engine of htaccess files, and am currently developing a php mvc framework. Basically, ...
2
votes
2answers
133 views

Add directory in the middle of a URL with hataccess

My current .htacces file looks like this: DirectoryIndex index.php RewriteEngine on RewriteCond $1 !^(index\.php|assets|robots\.txt|favicon\.ico) RewriteCond %{REQUEST_FILENAME} !-f RewriteCond ...
0
votes
2answers
160 views

modrewrite for smart URL's | multiple variables?

What is the best way to accomplish that? Im planning to do some kind of smart modrewrite + a function to grab variable name from the URL. For example: A URL like: ...
1
vote
0answers
45 views

Question about a redirect

I just noticed that sometimes (even when given a wrong url) load perfectly fine. How do they accomplish this? What I mean is, suppose you click on a link that seems good like www.foo.com but it ...
0
votes
1answer
82 views

Redirect to a webpage when URL points to directory (using .htaccess)

I have the following problem. I want to redirect all of requests that point to a specific directory (.htaccess is placed in it). Shortly speaking I want to use the following rules: 1. ...
0
votes
1answer
1k views

Redirecting all URLs that end in .php to no extension

I've recently removed the .php extension from all of my pages. Google results are still showing: www.mysite.com/page.php www.mysite.com/directory/page-example.php These are now dead links. The new ...
2
votes
2answers
96 views

Want to turn mysite.com/country/name/Korea to mysite.com/korea

I think the title explains it all. The thing is that my application is Zend Framework based and includes a number of controllers. The main controllers are: Companies/ People/ Countries/ Initially a ...
1
vote
2answers
1k views

CodeIgniter URI Routing (htaccess) with multiple Applications

Hello stackoverflow community, I've got a little Problem with my CodeIgniter. I use two applications in my app folder. The first one is the frontend, the second one the backend. In my root directory ...
0
votes
1answer
149 views

Apache2 rewrite URL in .htaccess

I wanted to rewrite any request with www.example.org, https://www.example.org and http://example.org to https://example.org Is there an easy way to do it? I am currently doing the following in my ...
0
votes
1answer
94 views

I want to 301 redirect a part of an url, but not the childeren of the url

For an example: www.domain.com/part1/part2 has to be 201, but if you type www.domain.com/part1 it has to be redirected to www.domain.com. The normal redirect works by part2 aswell.
0
votes
1answer
90 views

problem with url rewrite .htaccess

I'm writing a mvc framework in php, and trying to rewrite urls using this pattern: www.example.com/contact/send/ to read as www.example.com/index.php?url=contact/send/ So I can explode the ...

1 2