Skip to content

Commit b46c882

Browse files
committed
Change blog url
1 parent 1697142 commit b46c882

File tree

2 files changed

+4
-8
lines changed

2 files changed

+4
-8
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -159,9 +159,9 @@ auto-editor --margin --help
159159

160160
## Articles
161161
- [How to Install Auto-Editor](https://auto-editor.com/installing)
162-
- [All the Options (And What They Do)](https://auto-editor.com/options)
162+
- [All the Options (And What They Do)](https://auto-editor.com/ref/options)
163163
- [Docs](https://auto-editor.com/docs)
164-
- [Blog](https://auto-editor.com/blog)
164+
- [Blog](https://basswood-io.com/blog/)
165165

166166
## Copyright
167167
Auto-Editor is under the [Public Domain](https://github.com/WyattBlue/auto-editor/blob/master/LICENSE) and includes all directories besides the ones listed below. Auto-Editor was created by [these people.](https://auto-editor.com/blog/thank-you-early-testers)

docs/server.js

+2-6
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,12 @@ app.get("/app/*", (req, res) => {
99
res.redirect(301, `https://app.auto-editor.com${newPath}`);
1010
});
1111

12-
app.get("/blog/*", (req, res) => {
13-
console.log(req.path);
12+
app.get("/blog*", (req, res) => {
1413
res.redirect(301, `https://basswood-io.com${req.path}`);
1514
});
1615

1716
app.get("/options", (req, res) => {
18-
let options = {
19-
headers: {"Content-Type": "text/html"}
20-
};
21-
res.sendFile(path.join(__dirname, "public/ref/options"), options);
17+
res.redirect(301, "https://basswood-io.com/ref/options");
2218
});
2319

2420
app.use(express.static("public", {

0 commit comments

Comments
 (0)