Tagged Questions
The slash tag has no wiki summary.
8
votes
4answers
1k views
nginx and trailing slashes on $document_root?
I use the following configuration for nginx: http://gist.github.com/340956
However, this configuration causes a No input file specified error with PHP. The only way I have been able to solve it is by ...
6
votes
4answers
2k views
Simple URL routes in WCF Rest 4.0 without trailing slash
I have a WCF REST 4.0 project based on the the WCF REST Service Template 40(CS). I'd like to expose simple service endpoint URLs without trailing slashes. For example:
CarService.cs
...
5
votes
1answer
75 views
Rewrite module to handle site version folders (strip slash)
I'm using the following rule to use folders for different versions:
RewriteEngine On
RewriteRule .* - [E=VERSION:020]
RewriteRule ^versions/(.*)$ versions/$1 [L]
RewriteRule ^(.*)$ ...
5
votes
3answers
1k views
url trailing slash and seo
Which is better for SEO and page rank?
mysite.com/directory/my-page
OR
mysite.com/directory/my-page/
I know the above two URLs are treated as two separate pages by search engines, but I'm stuck on ...
4
votes
4answers
105 views
What is the difference between Using RegExp and Using forward slash notation to test against String?
Is there any difference between using new RegExp("regex"); and /same_regex/ to test against a target string? I am asking this question because I got different validating result while use these two ...
4
votes
3answers
982 views
making apache and django add a trailing slash
My /train directory is aliased to a script in httpd.conf by:
WSGIScriptAlias /train /some-path/../django.wsgi
And it works well, except for one problem. If a user goes to /train (with no trailing ...
4
votes
8answers
2k views
So what IS the right direction of the path's slash (/ or \)?
it seems windows insist on writing this slash on files' path \, while .net's URI class writing this the other way?
Is there any right way? that is accepted even in the most primitive systems?
And ...
3
votes
2answers
43 views
/file.php to /file/ try out
I wanted to redirect/rewrite my name.php files to /name/
I found the solution on another topic ...
3
votes
5answers
74 views
Change a “\” to a “/”
I'm looking for a simple piece of code that will change all the backslashes in a string to forward slashes using java.
I tried this:
word.replaceAll("\","/");
but it will not work. Anyone have a ...
3
votes
4answers
723 views
Java on windows: prevent '/' slash in file name from acting as a seperator
I have to create a file based on a string provided to me.
For this example, let's say the file name is "My file w/ stuff.txt".
When Java creates the file using
File file = new File("My file w/ ...
3
votes
1answer
209 views
Trailing slash and initial www
I have this htaccess:
RewriteEngine On
# redirect with www
RewriteCond %{HTTP_HOST} ^mydomain [NC]
RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1/ [R=301,L]
# add .php internally
...
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
7answers
107 views
Semicolon after double slash in C
I have a question about comments in C language.
When we write for example
//this is the first step
This means a comment.
But when we write
//this is the first step;
Does this also mean a ...
2
votes
1answer
48 views
Is there a significant difference when loading files using forward slash vs backward slash in Node.js?
I have been writing Node.js apps for quite some time now, and I have been seldom paying any attention to the use of forward slash vs backward slash when loading files using Node.js on Windows.
Now, ...
2
votes
3answers
58 views
How to ignore trailing slash while joining two string columns in SQL
I have two tables tableA and tableB as described bellow
desc tableA
GUID
PROPERTY_NAME
PROPERY_VALUE
ANOTHER_COL_1
ANTHER_COL_2
desc tableB
GUID
PROPERY_NAME
PROPERTY_VALUE
RANDOM_COL_1
...
2
votes
1answer
135 views
Remove slash between action and querystring (like how SO's search behaves)
I've just added some search functionality to a project of mine which is working correctly. Having just used the SO search, I realised there is one tiny detail which I prefer to my own search and I ...
2
votes
1answer
108 views
Slash being escaped in URL
I'm using jquery.history plugin in my web-app and have a problem with '/' being escaped, so for example
I need to have following URL generated
/SomeAction#Resource/ResOne
but got
...
2
votes
2answers
100 views
php 5.2 new and use keyword path problem
Im on a host company that uses php 5.2 , some of the libraries i use are written in 5.3 and there are certain incompatibilities between the code.
First of all what is the alternative to :
use ...
2
votes
3answers
277 views
How to make Rails do not ignore trailing slashes in the routes?
For example, I have the rote in routes.rb:
get 'companies/' => 'companies#index', :as => :companies
There is the way to generate link with the trailing slash (like ...
2
votes
1answer
409 views
RewriteRule optional trailing slash issues
Working on an application that I’m building in parallel to a wordpress site with permalinks turned on. So, there are other rewrites later in the htaccess that handle the catch-all aspects for ...
2
votes
1answer
354 views
Detecting double slash (empty parameter) in request_uri
Related
1
2
3
But this question is slightly different.
Say I have a RewriteRule like:
RewriteRule ^test/([\w]*)/([\w]*)/([\w]*)/?$ go.php?q=THREE_$1_$2_$3
So http://localhost/test/a/b/c gets ...
2
votes
5answers
2k views
Remove Trailing Slash From String PHP
Is it possible to remove the trailing slash ( / ) from a string using PHP?
2
votes
3answers
1k views
remove multiple trailing slashes mod_rewrite
I know this question was asked a number of times on this site alone, but browsing through the relevant posts I couldn't find a solution. Trying to remove multiple trailing slashes after domain. The ...
2
votes
2answers
393 views
R slash - escape oder sanatize using regex?
Hi there
I've just started analyzing some data using R - unfortunately I have encountered some problem...
I'm reading in a (tab separted) csv file and want to process the data and there is one ...
2
votes
1answer
719 views
Allow param containing slashes in Zend_Controller_Router_Route_Regex
This is my code:
$route = new Zend_Controller_Router_Route_Regex('download/([^/]+)(/([^/]+))?/(\d+)/(\d+)',
array('controller' => 'download',
...
2
votes
3answers
975 views
How can I escape the slash character in vi?
When I try to search a string starting with the slash / character in vi, the cursor jumps to the next search result from the previous search. However, I'd like to find the literal slash character. How ...
1
vote
2answers
10 views
Avoid the slash(/) between Spring RequestMapping
Consider the following example:
@Controller
@RequestMapping({"/home"})
public class Home {
@RequestMapping(value = { "", "/" })
public String index() {
return "home";
}
...
1
vote
2answers
47 views
regex and getting slashes plus characters from a url
Why doesnt this rule return slashes with characters?
RewriteRule ^test/(.+)/(.+)/(.+)/?$ test.php?one=$1&two=$2&three=$3
For example in this URL
mysite.com/test//one///two////three///
...
1
vote
1answer
47 views
Double slash in OsCommerce shop (e.g. http://www.shop.com//index.php?cPath=427)
The shop version is osCommerce Online Merchant v2.2 RC2a. If a user surfes in the shop, the URL has a double slash before index.php. I looked in the config but cannot find an error.
My configure.php ...
1
vote
5answers
71 views
Backslash Disappears from Filename
This is my code:
<script>
document.getElementById(div').innerHTML = '<a href="javascript:void(0);" onclick="openPhpFile (\'asdasD\\Asdeqw.txt\');">efff</a>';
</script>
When ...
1
vote
1answer
70 views
Groovy: Replace / in Path with \
How would you replace / with \ in groovy??? so that
"//10.1.1.1/temp/test" would be "\10.1.1.1\temp\test"
"//10.1.1.1/temp/test".replaceAll(/'\/'/,'\')<-- ?!?? doesnt work
Anyone has an idea?
...
1
vote
1answer
71 views
Symfony 1.0 routing separators
I have used Symfony 1.4 before, but I'm maintaining an Symfony 1.0 project right now.
Basically, my question is about routing in Symfony 1.0:
Is there a way to use anything else than slashes to ...
1
vote
1answer
305 views
How to generate links with trailing slash in Rails 3?
I'm porting the existing website from PHP to Ruby on Rails 3 and I have to keep the urls unchanged.
I have the route:
get 'companies/' => 'companies#index', :as => :companies
In a view file ...
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
3answers
234 views
How to remove or disable the slash at the end of the URL?
I don't know exactly what is the problem and I try do lots of research
I do understand that if there is a slash at the end of the URL there are lots of advantages of loading and stuff.
but the ...
1
vote
1answer
363 views
Trailing Slash Behavior in Rails Application
I am currently trying to mimic folder/files behavior in rails with category/articles schema. So, I have this in routes :
match '/:category/' => 'category#list_articles'
match ...
1
vote
1answer
126 views
How to get rid of forward slash in Python raw_input()
Beginner programmer here. So bear with me. I have a simple python program.
print "How tall are you?",
height = raw_input()
print "So you're %r tall" %(height)
If I enter the height as 6'6'' python ...
1
vote
3answers
1k views
remove a trailing slash from a string(changed from url type) in JAVA
i have a problem removing trailing slash from a string, the string is basically a url changed to type string.
i want to chack if the string ends with a url, and if it does, i want to remove it.
can ...
1
vote
1answer
140 views
mod_rewrite search feature, problem with slash (404 error)
I'm trying to rewrite search results page url to something like /search/query-1.html
but when I try searching for a keyword that has a slash "/" or "#" .. (e.g A/D) it returns a 404 error.
My ...
1
vote
2answers
235 views
Apache: How to make the same rewrite rule without using THE_REQUEST?
How to make the same rewrite rule without using THE_REQUEST?
RewriteEngine On
# Rewrite multiple slashes with single slash after domain
RewriteCond %{THE_REQUEST} ^[A-Z]+\s//+(.*)\sHTTP/[0-9.]+$ [OR]
...
1
vote
1answer
560 views
django - url with authomatic slash adding
I'm using django admin on my website. When I enter url without slash after admin (http://mydomain.com/admin) I receive 404 error. I thought that django automatically added slash on the end of url. Of ...
1
vote
3answers
413 views
Why is the slash an escapable character in JSON?
json.org states, that forward slashes (aka solidus, /) can be escaped:
"\/"
However, unescaped slashes are valid, too:
"/"
What's the rational behind this? Does it come from the Javascript ...
1
vote
3answers
276 views
Xpath match node with slash in data using predicate
Problem originated while using SoapUI to validate xml response data. I transfered the problem to XPath Visualizer so I could work through the issues.
Using an Xpath query I want to return the ...
1
vote
1answer
435 views
How to escape forward slash in T-SQL 2005?
I've got this dynamic t-sql:
declare @sql nvarchar(max)
set @sql =
N'
insert into #t
SELECT
row_number() over(order by getdate()) as RowNum,
d.value('''+@baseDateXpath+''', ''datetime'') as ...
1
vote
4answers
483 views
How to escape slashes in Perl text used in a regular expression?
end_date=$(date +"%m/%d/%Y")
/usr/bin/perl -pi -e "s/_end_date_/${end_date}/g" filename
I want to replace string '_end_date_' with the current date. Since the current date has slashes in it (yes, I ...
1
vote
1answer
533 views
Double Slash at end of URL when going to HTTPS?
My site currently uses http and https sections based on the data being collected on the site (form data uses https).
On my index page, I have the PHP code at the top:
<?php
session_start();
...
1
vote
4answers
1k views
How to create a JAX-RS service where the sub-resource @Path doesn't have a leading slash
I've created a JAX-RS service (MyService) that has a number of sub resources, each of which is a subclass of MySubResource. The sub resource class being chosen is picked based on the parameters given ...
1
vote
4answers
1k views
JavaScript removes slash from JSP variable
Have JSP variable ${remoteFolder}
It's value is \\file-srv\demo
Use jQuery embedded in this JSP.
jQuery resolves ${remoteFolder} variable as \file-srvdemo ,i.e. one slash is removed.
How to remain ...
1
vote
7answers
3k views
Echo A Link, Get A Trailing Slash?
I've discovered that any time I do the following:
echo '<a href="http://" title="bla">huzzah</a>';
I end up with the following being rendered to the browser:
<a href="http:///" ...
0
votes
2answers
24 views
modrewrite website with slash in .htaccess
How can I translate an URL like:
http://localhost/mySite/?link=OFFERS&sublink=ARTICLE&subsublink=DETAIL
to:
http://localhost/mySite/OFFERS/ARTICLE/DETAIL
if one parameter is empty it should ...