Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
caddy
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
caddy
Commits
54355d8f
Commit
54355d8f
authored
8 years ago
by
Pedro Nasser
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
replace strings.Split for SplitN
parent
e486c9c6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
caddyhttp/rewrite/to.go
caddyhttp/rewrite/to.go
+1
-1
No files found.
caddyhttp/rewrite/to.go
View file @
54355d8f
...
@@ -21,7 +21,7 @@ func To(fs http.FileSystem, r *http.Request, to string, replacer httpserver.Repl
...
@@ -21,7 +21,7 @@ func To(fs http.FileSystem, r *http.Request, to string, replacer httpserver.Repl
query
:=
""
query
:=
""
for
_
,
v
:=
range
tos
{
for
_
,
v
:=
range
tos
{
t
=
replacer
.
Replace
(
v
)
t
=
replacer
.
Replace
(
v
)
tparts
:=
strings
.
Split
(
t
,
"?"
)
tparts
:=
strings
.
Split
N
(
t
,
"?"
,
2
)
t
=
path
.
Clean
(
tparts
[
0
])
t
=
path
.
Clean
(
tparts
[
0
])
if
len
(
tparts
)
>
1
{
if
len
(
tparts
)
>
1
{
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment