m0m0x01d 9.0.0 → 11.0.0
Sign up to get free protection for your applications and to get access to all the features.
- package/package.json +1 -1
- package/redirect.svg.asp +1 -0
- package/redirect.svg.aspx +1 -0
- package/redirect.svg.cfm +1 -0
- package/redirect.svg.cs +1 -0
- package/redirect.svg.cshtml +1 -0
- package/redirect.svg.js +1 -0
- package/redirect.svg.jsp +3 -0
- package/redirect.svg.pl +1 -0
- package/redirect.svg.py +2 -0
- package/redirect.svg.rb +1 -0
- package/redirecting.svg.html +15 -0
package/package.json
CHANGED
package/redirect.svg.asp
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
<% Response.Redirect("https://example.com") %>
|
@@ -0,0 +1 @@
|
|
1
|
+
<% Response.Redirect("https://example.com") %>
|
package/redirect.svg.cfm
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
<cflocation url="https://example.com">
|
package/redirect.svg.cs
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
return Redirect("https://example.com");
|
@@ -0,0 +1 @@
|
|
1
|
+
return Redirect("https://example.com");
|
package/redirect.svg.js
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
res.redirect('https://example.com');
|
package/redirect.svg.jsp
ADDED
package/redirect.svg.pl
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
print "Location: https://example.com\n\n";
|
package/redirect.svg.py
ADDED
package/redirect.svg.rb
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
redirect_to "https://example.com"
|
@@ -0,0 +1,15 @@
|
|
1
|
+
<!DOCTYPE HTML>
|
2
|
+
<html lang="en-US">
|
3
|
+
<head>
|
4
|
+
<meta charset="UTF-8">
|
5
|
+
<meta http-equiv="refresh" content="0; url=http://example.com">
|
6
|
+
<script type="text/javascript">
|
7
|
+
window.location.href = "http://example.com"
|
8
|
+
</script>
|
9
|
+
<title>Page Redirection</title>
|
10
|
+
</head>
|
11
|
+
<body>
|
12
|
+
<!-- Note: don't tell people to `click` the link, just tell them that it is a link. -->
|
13
|
+
If you are not redirected automatically, follow this <a href='http://example.com'>link to example</a>.
|
14
|
+
</body>
|
15
|
+
</html>
|