Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
4answers
1k views

Is it always safe to remove a trailing slash from a URL?

I'm storing URLs in a database, and I want to be able to know if two URLs are identical. Generally, a trailing slash at the end doesn't change the response you'd get from a server. (ie. ...
3
votes
1answer
1k views

Is a slash (“/”) equivalent to an encoded slash (“%2F”) in the path portion of an HTTP URL

I have a site that treats "/" and "%2F" in the path portion (not the query string) of a URL differently. Is this a bad thing to do according to either the RFC or the real world? I ask because I keep ...
2
votes
3answers
67 views

Why does www.mywebsite.com/folder work, but www.mywebsite.com/folder/ does not?

Why does mywebsite.com/page work, but mywebsite.com/page/ does not? We have an htaccess entry that removes the .php ending of files, for example "mywebsite.com/new.php" can be accessed simply as ...
2
votes
1answer
111 views

PHP directory separators, forcing forward slash; non-intrusive

Whenever I work with PHP (often) I typically work on a Windows box, however I (try to) develop platform agnostic applications; one major point of issue being the use of directory separators. As many ...
2
votes
1answer
215 views

problem while migrating to windows server from linux server

We have a php project which is developed on a linux platform and now we want that to be run on a windows server. We now face a problem with file paths and the problem is related to back slash & ...
2
votes
3answers
291 views

Two part question on JavaScript forward slash

What is the real reason that we must escape a forward slash in a JavaScript string, and also why must we escape string/no string in XHTML. A lot of tutorials just brush over this issue. Thanks in ...
2
votes
3answers
354 views

How do I create and append an image with Javascript/jQuery?

I'm using the following code to create an image element, load it, then append it to the article on load. $('<img />') .attr('src', 'image.png') //actually imageData[0].url ...
2
votes
4answers
110 views

Are unnecessary slashes in a URL bad?

I noticed that http://stackoverflow.com//////////questions/4659504/ is a valid URL. However https://www.google.com//////////analytics/settings is not. Are there differences inherent in web server ...
2
votes
1answer
771 views

Do You Have to Escape a Forward Slash When Using Mod_Rewrite

I am very sorry if this question has been asked before, I have searched but I am still quite unsure. With regards to the forward slash "/" when giving a RegEx to RewriteRule or RewriteCond, or ...
1
vote
2answers
29 views

Redirect xyz.html/ to xyz.html on large scale

I have a simple html website with over 50 html pages. From statistics-script I sometime see users on a page like xyz.html/ (which redirect to 404) instead of xyz.html. I know a simple way is to put a ...
1
vote
2answers
190 views

Create directory tree with forward slash in directory name

Trying to create a directory tree in which one of the directories has a forward slash (/) in the name. See the $artist variable for the artist name and my attempts at creating the directory. ...
1
vote
2answers
294 views

PHP preg_replace - String Begins With Forward Slash

Trying to use preg_replace to find strings that begin and end with a forward-slash, for example "/Harry/". (has to be preg_replace) I also need to ignore case and ensure it is an individual word. So ...
1
vote
2answers
544 views

Forward slash in Python replace()

I have been working on an anagram solver in Python 2.7 and came across a curiosity that I haven't been able to find an explanation for. The program reads from a file which contains a list of anagrams ...
1
vote
2answers
334 views

AS3 - Allow Forward Slash In Input Text?

i'm trying to allow forward slash to be entered in my input text field myInputField.restrict = "A-Za-z.\\-\\/"; the above text field should allow upper case letters, lower case letters, periods, ...
1
vote
2answers
1k views

Why does Java automatically decode %2F in URI encoded filenames?

I have a java servlet that needs to write out files that have a user-configurable name. I am trying to use URI encoding to properly escape special characters, but the JRE appears to automatically ...
1
vote
5answers
880 views

How can I canonicalize Windows file paths in Perl?

Update: I can make this a simpler problem to solve: I want to figure out what the correct regex would be to substitute any single occurrence of a back slash with two back slashes. I want to turn ...
1
vote
2answers
2k views

Lost use of forward slash in windows command prompt

I can no longer use / at the windows xp command prompt, and it seems to have started after a botched cygwin installation, e.g. cd /windows won't work, but used to. Can anyone think of how this might ...
0
votes
3answers
51 views

Replacing a string wich contains a slash sometimes

I am doing a str_replace() on a string which sometimes contains a slash in it. This is the str_replace i have: $text = str_replace('<Reference code="'.$ref['code'].'">','<a href="#" ...
0
votes
1answer
114 views

How to replace backward slash followed by 't' or any other alphabet or character in escape chacter in file path to forward slash in java?

I'm importing a CSV file to MySQL database. This can be done using java.mysql support for forward slash in file path. If user gives the path String filepath=" c:\upload\date\csv\sample.csv"; we can ...
0
votes
0answers
47 views

Preserve double slashes in apache mode rewite

Im currently using this rule RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_URI} !(.*)/$ RewriteRule ^(.*)$ %{REQUEST_URI}/ [R=301] RewriteRule ^((([A-Za-z0-9-]+)/+)*)$ index.php?url=$1 ...
0
votes
3answers
132 views

Difference between forward and backslash

What is the difference in using a forward slash and backslash in navigating file systems. Also what is the diffrence in a ./ and ../ ?
0
votes
3answers
194 views

PHP string containing two forward slashes in

This is probably a very simple question, but I just can't figure it out. I want to define a string containing two forward slashes $htmlcode="text//text"; From what I understand what follows after ...
0
votes
1answer
278 views

ASP.NET MVC 2. Javascript Error when deployed to IIS7

Been working on a ASP.NET MVC 2 solution for some time now and today I decided to test in in the IIS7 so I could put in on a company server for my colleagues to play with. However I got quite a ...
0
votes
4answers
2k views

whats the format for a string of forward slash / in c#

I'm using a htmlhelper where i give table data id's based on day and month values which are retrieved. The problem is the id is not recognized in the format it is. / seems to not be picked up yet when ...