The / character ("forward slash", or just "slash") is a directory separator in URLs and in many operating systems including Linux (Windows uses \ (backslash) but many applications and APIs also accept /). It is also the division operator in many languages, and marks closing tags in XML/HTML. In some ...
0
votes
0answers
18 views
Firefox can not encode slash from tomcat 7
I currently face a problem, and I can not solve it even I try to find the answer as well as get some related solutions in web.
I use Tomcat 7 as my web server. Everything works fine in IE, Chrome, ...
1
vote
2answers
44 views
Slashes are added automatically [duplicate]
I have a script on my local server which has some input tags where you can add some data which will be stored in a mysql database. On my local server, the data is added as it should but on my server, ...
0
votes
3answers
58 views
How do I echo slashes in php?
Everytime I check the HTML output of this piece of code, the slashes aren't included. Thus, the background image fails. I even put it through a html to php converter. Im lost; please help.
while($row ...
0
votes
1answer
22 views
mod rewrite internal error 500 multiple slash
Can someone help me again regarding this rewrite module,
with this rules
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule (.*) ...
0
votes
1answer
18 views
Removing The Trailing Slash from a directory in htaccess
The following is my directory structure
Root/
index.php
contact.php
projects.php
/index.php
/project1.php
/project2.php
I have rewrites ...
0
votes
1answer
44 views
.htaccess 301 Redirect non slash domains and slash domain to .html
I am trying to add some code to my .htaccess to redirect slash and non slash urls to the .html all url's apart from my homepage.
For example
www.mydomain.com/cat/ and www.mydomain.com/cat
should ...
1
vote
2answers
47 views
How to use Nginx to separate variables with slashes
I'd like to be able to use
www.example.com/profiles/1234567890
instead of
www.example.com/profiles?id=1234567890
but was unable to figure out how to do so.
I found an apache equivalent here: Turn ...
-1
votes
2answers
49 views
How to remove random excess of slashes from url?
How to remove random excess of slashes from url or just validate it?
For example,
valid statements:
http://domain.com/url/url2
https://domain.com/url/url2
www.domain.com/url/url2
...
1
vote
1answer
67 views
C# how to replace Slash Quote \"
I'm trying to create a search and replace string like this:
src=\"/path/file.jpg\"
into
src=\"http://mysite.com/path/file.jpg\"
By searching for the property src and the equals slash quote. The ...
0
votes
3answers
53 views
Remove all slashes in Javascript
How to remove all slash in a JavaScript string ?
var str = "one thing\\\'s for certain: power blackouts and surges can damage your equipment.";
i want output like
one thing's for certain: power ...
1
vote
3answers
58 views
What does slash before a Class name mean
A Class has slash at front and is an Abstract. I have seen derived attributes in class with slash at the beginning but I don't know what does it mean when we have slash before a Class name.
1
vote
2answers
103 views
Handling escaped slashes in a JSON string
I'm trying to get the json of the database and the code goes like this
$path["file_name"] = "www.119.com\/assets\/demo\/large\/".$row["file_name"];
While I convert to a json object and it shows ...
1
vote
1answer
86 views
Changing “/” into “\” in R
I need to change "/" into "\" in my R code. I have something like this:
tmp <- paste(getwd(),"tmp.xls",sep="/")
so my tmp is c:/Study/tmp.xls
and I want it to be: c:\Study\tmp.xls
Is it ...
0
votes
0answers
20 views
Slash appearing at the end of all urls
I have problem with my website because Google is reporting duplicate content on it, even if those pages (static pages) don't appear on the server. For example if I have page at this location
...
3
votes
2answers
43 views
backward slash followed by a number in python strings
I've encountered a problem in Python when dealing with backward slashes followed by numbers inside a string. I use windows OS environment.
This becomes especially annoying when you have numbers in ...
0
votes
3answers
60 views
/ appear in text when ' is used in mysql?
I have a html form that users of my site can type in, click submit and then mysql inserts this into the database, and for some reason when this gets submitted to my 'bio' column which is longtext and ...
1
vote
1answer
97 views
301 Redirect URL with Trailing Slash to “Sub directory” with same name
The company I work for recently took over a site that is built in WordPress, apparently Google has indexed several pages with a trailing / that coupled with the fact that the previous company ...
0
votes
1answer
38 views
How can I escape slash sign `/` in Apache `<If>` directive's regex?
I wanted to serve .xhtml files as
application/xhtml+xml if the browser says that it accepts it.
text/html otherwise
I tried doing it with mod_rewrite but it didn't work with Options ...
2
votes
2answers
47 views
bash replace \ with / in a tetxfile
I have a file with some file’s path. Like this:
C:\Users\peter\workspace\etwas.txt
I tried read with this routine
while read LINE
do
web=$LINE
echo $web
done <etwas.txt
The result:
...
0
votes
0answers
57 views
Double slashes with django + apache mod_wsgi
I use nginx as a frontend and django app served by apache mod_wsgi behind.
When request with double slashes like /foo//bar/ comes, apache sets SCRIPT_NAME environment variable to /foo/ and django ...
0
votes
2answers
101 views
Forward slashes in a JAVA regexp
General Situation:
I am having some trouble matching a "/" when using String.matches("string");
I assume I am missing some level of escaping.
matches("bar" + "[\\W\\w]*"); //works.
matches("bar/" + ...
0
votes
2answers
90 views
cannot keep backslash in string in ruby code
I have a string in my ruby code which ends with a backslash:
acc.secret_key = "ASJSJJDSJFJJFFJJFJF\"
acc.save
Above is the code snippet, when I try to save it using Active record I get an error, I ...
0
votes
1answer
47 views
Redirect to alternate url using the variable declared after first slash
Ok, Ive checked this site and still I am confused about how to do this...
I need to take a url like this
subdomain.domain.com/1234
and redirect to a url like this
...
0
votes
1answer
75 views
eclipse slash in vm argument
I have the same code runing on java 6 and java 7, but in java 7 it doesn't work as I expect.
I write in the VM argument:
-Dmy.root=D:\mvobs\S.4.8.600_view\
When I run it with java 6 everythink is ...
0
votes
1answer
32 views
How do i remove anything starting with a '?' after trailing slash?
I have the following rewrite rule in my .htaccess:
RewriteRule ^([A-Za-z0-9-]+)/?$ product.php?var1=$1
RewriteRule ^([A-Za-z0-9-]+)/?([A-Za-z0-9-_]+)?/?$ product.php?var1=$1&var2=$2
RewriteRule ...
1
vote
3answers
66 views
MsAccess Database
I'm trying to have my connection string to connect to my Access database but I encountered this problem.
When I wrote this as the connection string:
string cs = ...
1
vote
2answers
73 views
Named parameters being passed as part of the url because of slashes
I am using cakephp 1.3 and i want to search a record which contain / in string.
i have passed parameter as below.
Search params are as below.
Array
(
[controller] => indents
[action] => ...
1
vote
1answer
66 views
force htaccess to rewrite url from last slash
I need to use htaccess to change below url:
http://example.com/main/en/index.php?page=pages&page_id=9
to:
http://example.com/main/en/pages/9.html
I've done it by the below rule:
...
-2
votes
2answers
75 views
jQuery: how to write the double slash '//' so that it does not throw error? [closed]
I have this code:
(options.parent) ? top = options.parent.height / 2; : top = parent.height() / 2;
Because of the double slash that i use there it get's an error i know why i get the error i just ...
0
votes
1answer
90 views
Handling URLs containing slash '/' character with web.py
I'm coming from Flask and handling URLs with slash character is pretty neat: http://flask.pocoo.org/snippets/76/
I'm now using web.py and I'd like to do the same. I don't know beforehand how many ...
1
vote
0answers
22 views
Chromium URL Slashes
I'm trying to connect my company's web page. I noticed a problem and couldn't figure it out.
When I type "http://www.example.com/a" it's redirecting to 404 page. But when I type /a/ instead of /a, ...
0
votes
0answers
99 views
allow double forward slash in urlrewrite
on my dev enviornment i have url of this format.
http://dev.nn5.com/user/login/dest=http://dev.nn5.com/supplier/reg
Note the variable dest in url. The double slash is normalised to single slash by ...
0
votes
2answers
47 views
Need some answer about example.php/example
I am doing on a project and i stumble upon on this while going through some code. I had tried to google but could not find a correct keyword to search regarding this question.
...
0
votes
0answers
77 views
Forward slash in search term giving PageNotFound - No mapping found for HTTP request with URI
I have an Ajax auto-complete search that works correctly apart from when the user searches for a term that has a forward slash "/" in it. The term appears but when selected nothing happens. When a ...
1
vote
2answers
177 views
WCF Web JSON request double slash
I have WCF Service with method which sends path like : "C:\asdf\log.log".
Client gets "C:\\asdf\\log.log"
Where is problem and how to solve is?
Send code
MemoryStream stream1 = new MemoryStream();
...
2
votes
3answers
193 views
Get anything after first slash in URL
I can get my browser url using : string url = HttpContext.Current.Request.Url.AbsoluteUri;
But say if I have a url as below :
http://www.test.com/MyDirectory/AnotherDir/testpage.aspx
How would I ...
-1
votes
1answer
153 views
Why we have backslash for DOS and slash for linux and URL? [closed]
I use both windows and Linux and often I got confused when I use command lines...
1>MS-DOS use backslash like C:\Documents and Settings\user_name\Desktop\
2>Linux use slash like /usr/lib
3>URL ...
1
vote
2answers
134 views
MySQL match against with a slash
I'm having some problems searching for products that contain a slash (for example ac/dc) with mysql's match against.
There seems to be a certain setting that's affecting this. On my windows' xammp ...
1
vote
1answer
391 views
Tomcat, JAX-RS (jersey), @PathParam: how to pass two variables containing slashes
I'm writing a REST service using Jersey Java and Tomcat. Here's my question - how to I accept two @PathParam variables that include slashes? i.e., enrollment/{id}/{name}, where id can be ...
3
votes
1answer
254 views
nginx directories without slash
I have this configuration of nginx + phpfpm + phpmyadmin:
root /var/www/utils;
location ~ ^/phpmyadmin/.*\.(jpg|jpeg|gif|png|css|js|ico)$ {
root /var/www/utils;
}
location = ...
0
votes
0answers
27 views
Redirection including a slash in Apache
Let's assume I have a website abc.com and I want customers to be redirected to a wordpress website when they type abc.com/c. I am using apache as a web server. How can I do this?
15
votes
2answers
232 views
Odd C# path issue
My C# application writes its full path surrounded by double quotes to a file, with:
streamWriter.WriteLine("\"" + Application.ExecutablePath + "\"");
Normally it works, the written file contains
...
0
votes
1answer
148 views
swap function in prolog
I need to replace the term A/B in prolog with B/A.
A and B are variables (could be either a number, an uppercase letter, or a lowercase letter)
I mean, what is on the right side of the slash should ...
0
votes
2answers
70 views
Insert a slash in a string after every number except at the end (PHP)
i've a string
$string;
in this string i have a number, like 3743687
i wish to add a slash after every number, except at the end, so the result will be
3/7/4/3/6/8/7
is there a php function to do ...
1
vote
1answer
217 views
htaccess screwed Ajax hash # mark
I have pretty much standard rule that's adding slash to the end of the URL:
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_URI} !(.*)/$
RewriteRule ^(.*[^/])$ $1/ [R=301,L]
Ajax photo ...
2
votes
1answer
57 views
Rewrite rule not showing slash to users & show slash for script
I'm in situation when CMS creates duplicates. Every page can be opened with slash at the end and without.
So I need to rewrite physically every URL for Search Engine and people with 301 redirect to ...
1
vote
2answers
210 views
Use forward slash in variable
I wrote a script to ease the syncing and building of Android source. I tried adding a function to cherrypick patches, but I can't get it to work properly. I know it's because of the forward slashes, ...
0
votes
0answers
54 views
How to remove slash from my website
I want to remove Slash from my website
ex: http://www.egyfp.com/
I don't want this slash (/) and another ex: http://egypt.egyfp.com/
how to remove it?
so what should i do?
2
votes
3answers
314 views
Find and replace text with slash characters
So I looked around on Stackoverflow and I understand finding and replacing text works something like this:
perl -pi -w -e 's/www.example.com/www.pressbin.com/g;' *.html
However, what if the text I ...
0
votes
1answer
71 views
How do I redirect to a page of my site taking the trailing slash as the language parameter using .htaccess
I have this rule which is not redirecting properly:
#redirect from www.mysite.com/page-NAME/es to www.mysite.com/public/index.php?page=NAME/es
RewriteCond %{HTTP_HOST} ^(www.)?mysite.com$
RewriteCond ...
