Tagged Questions
The path-info tag has no wiki summary.
6
votes
4answers
161 views
How reliable are URIs like /index.php/seo_path
I noticed, that sometimes (especially where mod_rewrite is not available) this path scheme is used:
http://host/path/index.php/clean_url_here
--------------------------^
This seems to work, at ...
2
votes
2answers
47 views
Check in PHP if PATH_INFO is enabled on your server?
From PHP, is there a cross-platform, cross-web server way of determining if PATH_INFO is enabled on the server you are running on?
It appears $_SERVER['PATH_INFO'] is only populated if there are ...
2
votes
3answers
504 views
Problem using unicode in URLs with cgi.PATH_INFO in ColdFusion
My ColdFusion (MX7 on IIS 6) site has search functionality which appends the search term to the URL e.g. http://www.example.com/search.cfm/searchterm.
The problem I'm running into is this is a ...
2
votes
1answer
910 views
What exactly is PATH_INFO in PHP?
all external URLs look like
'module/action?key1=param1'. No
customization possible--but it's fast.
The difference is that the first uses
PHP's GET, and the second uses
PATH_INFO.
I've ...
2
votes
1answer
632 views
mod_rewrite or path_info for clean URLs
I have always used mod_rewrite for creating clean looking URLs, until recently I didn’t know there was any other option. A few weeks back someone on here pointed out that exactly the same effect can ...
1
vote
2answers
71 views
php $SERVER['PATH_INFO'] and apache mod_rewrite
Here I have .htaccess file with:
Options +FollowSymLinks
RewriteEngine on
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule .* index.php [QSA,L]
...
1
vote
2answers
104 views
Rewrite everything to be after index.php/
I'm setting up a php mvc framework and I want to redirect anything after the domain to index.php/$1 but it's not working. I have rewrite_module enabled and AllowOverride All, is there something else ...
1
vote
6answers
2k views
Portable and safe way to get PATH_INFO
I'm seeking a portable way to receive the (handy) $_SERVER['PATH_INFO'] variable.
After reading a while, it turns out PATH_INFO is originated from CGI/1.1, and my not always be present in all ...
0
votes
2answers
94 views
url/php path_info issue
I am having what I believe is a strange problem. I have several sites developed on the same hosting platform. All site seem to be fine except for one of them. The website is set up around 1 page ...
0
votes
0answers
81 views
CodeIgniter 2 no longer able to use PATH_INFO after modifying .htaccess
I'm brand new to CI and I'm trying to remove the annoying "index.php" from the URLs. This is the .htaccess I'm using:
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond ...
0
votes
1answer
405 views
Changing uri_protocol to PATH_INFO breaks my CodeIgniter app?
I'm setting up Haughin's Twitter OAuth Library for CodeIgniter, and one requirement is to change the uri_protocol in config.php to PATH_INFO, which seems to be breaking my app in the way that all ...