The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
2answers
23 views

.htaccess Replace a word and redirect

I need to redirect http:// example. com/view-abc-def.html to http:// example. com/view/abc-def.html. In order to do that I used, RewriteRule ^(.*)view-(.*)$ /$1view/$2 [R=301,L] This work's ...
4
votes
1answer
46 views

Why does Uri behave differently for different schemes?

While poking around with the Uri class answering another question, I found something that seems strange to me: Consider these two Uris: var u1 = new Uri("http://a.b:33/abc%2fdef/c?d=f"); var u2 = ...
0
votes
5answers
99 views

Python string comparison won't match forward slash

A simple question usually has a simple answer but I am struggling to find it. Can someone please explain why the following isn't matching? string = 'HTTP/NONE' if string is 'HTTP/NONE': print 'match' ...
0
votes
0answers
13 views

Forward slashin url link is interpreted as backslash by firefox and safari

I am working on a website in php and I have several links that look like so: form method="post" action="https://hepalta.com/cart.php/" (<> are removed here so the method can be seen) and firefox ...
1
vote
2answers
60 views

Node.js for windows and macs forwardslash backslash rectification

Is there a method to rectify the discrepancy in node.js from windows to linux and mac concerning the backslash versus forwardslash? Windows requires backslashes when calling locations in git bash, ...
0
votes
0answers
46 views

Application.Executablepath in C# has mixed separator characters

I'm using someone else's code (licensed) on two different machines. On one machine, the Application.ExecutablePath returns the result the programmer must have expected, on the other it does not. Both ...
0
votes
1answer
146 views

Escape forward slash character in Hibernate Search / Lucene

I'm using Hibernate search 4.2, Lucene 3.6. I have following column in the domain: @Column(name = "summarycontent") @Field(index = Index.YES, store = Store.YES) public String getSummarycontent() { ...
1
vote
3answers
893 views

Find and replace string containing forward slash in ksh using a variable

In a file (file1.txt) I have /path1/|value1 (a path, followed by a value). I need to find the line containing that (unique) path and then change the value. So the line should end up as: ...
0
votes
3answers
184 views

Preg_replace with regex and forward slash

Here is the code: $string = "/My-Item-Here-p/sb-p36abbg.htm"; $str = preg_replace('/^.*-p\s*/', '', $string); $str = substr($str, 1); echo $str; This spits out 6abbg.htm, I would like to have it to ...
1
vote
1answer
357 views

How can I escape forward slashes in a user input variable in bash?

I'm working on a script to make setting up a Statamic site more efficient. The problem I'm running into is that the variable I'm using to replace a string in a file has unescaped forward slashes and ...
-1
votes
1answer
216 views

Validating Forward Slash

I am in an intro to Java class and we have to make a numerology program. i have everything except the data validation done. We have to validate that the date put in was put correctly, including the ...
0
votes
2answers
248 views

how to let Firefox treat forward and back slashes the same in url or file-paths?

Is there a way to let Firefox treat / like \ and vice versa in the url or local file path (rewrite it)? through a tweak, add-on, or anything? this is related to some local pages and links in some ...
0
votes
1answer
395 views

Ignoring/accepting forward slashes with htaccess and mod_rewrite

I need a little help on this one. I'm in the process of making a php page that collects a query string, tests it against a database for matches, and then redirects the user to a different section of ...
0
votes
3answers
559 views

Simple Javascript Replace not working

This seems so simple and trivial but it is not working. Here is my javascript: var url = "/computers/"; console.log(url); url.replace(/\//gi, " "); console.log(url); And here is the output in my ...
3
votes
5answers
1k views

Double forward slash period in regular expression

I've recently started using regular expressions in Java and I ran into a strange expression. The problem asks to find "words" consisting of only letters and at most one concluding period. So for ...
0
votes
2answers
532 views

How to use forward slashes instead of a hash (#) in history.js?

I am using a history.js plugin (http://tkyk.github.com/jquery-history-plugin/) and would like to know how I can implement a / type of URL. Right now my code is: //Check if url hash value exists (for ...
2
votes
6answers
112 views

preg_match from beginning of array to backward slash

Could someone explain how to use php preg_match to break a string up into an array, from the beginning of the string to the first backward slash? I have an array: ( [0] => s00473276\Soul To ...
-2
votes
3answers
1k views

How to replace “./” in Java?

How do I replace "./" with ""? I tried: String s = "./"; s.replaceAll("\\./",""); Why won't the above work for me?
1
vote
2answers
89 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 ...
2
votes
3answers
150 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 ...
5
votes
1answer
2k 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 ...
0
votes
3answers
249 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="#" ...
1
vote
3answers
2k 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
2answers
704 views

Create directory tree with forward slash in directory name [closed]

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
676 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 ...
3
votes
1answer
764 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 & ...
3
votes
3answers
3k 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 ...
0
votes
3answers
2k 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 ...
3
votes
3answers
4k 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 ...
3
votes
4answers
253 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 ...
1
vote
2answers
1k 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 ...
0
votes
1answer
496 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 ...
1
vote
2answers
828 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, ...
5
votes
1answer
2k 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 ...
0
votes
4answers
5k 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 ...
2
votes
2answers
3k 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 ...
13
votes
1answer
3k 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 ...
4
votes
4answers
2k 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. ...
1
vote
2answers
4k 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 ...