-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
69 lines (69 loc) · 3.46 KB
/
index.html
File metadata and controls
69 lines (69 loc) · 3.46 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<!DOCTYPE html>
<html lang="en">
<head>
<!-- ===== Charset and Viewport ===== -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- ===== SEO Meta Tags ===== -->
<title>301 Redirect Code Generator</title>
<meta name="description" content="Generate 301 redirect codes instantly for PHP, .htaccess, HTML, JavaScript, ASP & ASP.NET. Easy-to-use tool for SEO-friendly redirection.">
<meta name="keywords" content="301 redirect generator, 301 redirect code, .htaccess redirect, PHP redirect, HTML meta redirect, JavaScript redirect, ASP redirect, ASP.NET redirect, SEO redirect tool, permanent redirect code">
<meta name="author" content="Mukesh Kushwaha">
<link rel="canonical" href="https://mukeshkushwahae.github.io/301-redirect-code-generator/">
<!-- ===== Favicon & Icons ===== -->
<link rel="apple-touch-icon" sizes="180x180" href="./apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="./favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="./favicon-16x16.png">
<link rel="shortcut icon" href="./favicon.ico">
<!-- ===== Robots and Crawlers ===== -->
<meta name="robots" content="index, follow">
<meta name="googlebot" content="index, follow">
<meta name="bingbot" content="index, follow">
<!-- ===== CSS File ===== -->
<link rel="stylesheet" href="./assets/css/style.min.css">
</head>
<body>
<!-- ===== 301 Redirect Code Generator Form ===== -->
<div class="form-wrapper">
<form>
<div>
<label for="redirectType" class="form-label">Select Redirect Language:</label>
<select id="redirectType" class="form-control">
<option value="meta">HTML Meta</option>
<option value="javascript">JavaScript</option>
<option value="php">PHP</option>
<option value="asp">ASP</option>
<option value="aspnet">ASP.NET</option>
<option value="htaccess">.htaccess</option>
<option value="python">Python</option>
<option value="ruby">Ruby</option>
<option value="perl">Perl</option>
<option value="java">Java</option>
<option value="go">Go</option>
<option value="csharp">C#</option>
<option value="c">C</option>
<option value="cpp">C++</option>
<option value="bash">Bash</option>
<option value="json">JSON</option>
<option value="xml">XML</option>
</select>
</div>
<div>
<label for="redirectUrl" class="form-label">Redirect To (URL):</label>
<input type="text" id="redirectUrl" class="form-control" placeholder="https://example.com" autocomplete="off"/>
</div>
<div class="button-group">
<button type="button" id="generateBtn" class="button">Generate</button>
<button type="button" id="copyBtn" class="button">Copy</button>
<button type="button" id="clearBtn" class="button">Clear</button>
</div>
<div id="redirectCodeHidden" class="hidden">
<label for="redirectCode" class="form-label">Generated Redirect Code:</label>
<textarea type="text" id="redirectCode" class="form-control" rows="4" readonly=""></textarea>
</div>
</form>
</div>
<!-- ===== JavaScript File ===== -->
<script src="./assets/js/main.min.js"></script>
</body>
</html>