mod-speling

Apache mod_speling case insensitive URLs issue

只愿长相守 提交于 2019-12-03 11:22:05
问题 I want to have case insensitive URLs using Apache's mod_speling module, but this is producing unwanted lists of "multiple options" whilst the Apache documention says When set, this directive limits the action of the spelling correction to lower/upper case changes. Other potential corrections are not performed. I'm testing this on an Apache 2.2.16 Unix fresh install but I'm still running into exact the same problems as submitted in 2008. It's unexpected (and not wanted) behaviour when Apache

Apache mod_speling case insensitive URLs issue

爱⌒轻易说出口 提交于 2019-12-03 01:46:06
I want to have case insensitive URLs using Apache's mod_speling module, but this is producing unwanted lists of "multiple options" whilst the Apache documention says When set, this directive limits the action of the spelling correction to lower/upper case changes. Other potential corrections are not performed. I'm testing this on an Apache 2.2.16 Unix fresh install but I'm still running into exact the same problems as submitted in 2008. It's unexpected (and not wanted) behaviour when Apache lists a few "multiple choices" (status code 300) when the checkCaseOnly directive is on! I have this in

How do I make URLs case insensitive in Linux server

非 Y 不嫁゛ 提交于 2019-11-27 12:27:29
I am working a website which is deployed on a Linux server. I have small changes to do on that. I have folder read . The requirement is that if I enter the URL localhost:80/tom/Read or ../READ or /read it needs to navigate to read.php inside a read folder. I created a file .htaccess under a root directory. Placed following code mention below in the file by seeing the page mentioned here RewriteEngine On RewriteBase /tom/ RewriteMap lc int:tolower RewriteCond %{REQUEST_URI} [A-Z] RewriteRule (.*) ${lc:$1} [R=301,L] RewriteCond %{REQUEST_URI} ^system.* RewriteRule ^(.*)$ /index.php/$1 [L]

How do I make URLs case insensitive in Linux server

不打扰是莪最后的温柔 提交于 2019-11-26 16:01:35
问题 I am working a website which is deployed on a Linux server. I have small changes to do on that. I have folder read . The requirement is that if I enter the URL localhost:80/tom/Read or ../READ or /read it needs to navigate to read.php inside a read folder. I created a file .htaccess under a root directory. Placed following code mention below in the file by seeing the page mentioned here RewriteEngine On RewriteBase /tom/ RewriteMap lc int:tolower RewriteCond %{REQUEST_URI} [A-Z] RewriteRule (