Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update admin-redirect.md #2057

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,39 @@ module.exports = (_config, { strapi }) => {
strapi.server.routes(redirects);
};
```

### Shipping your own pages on / instead of the strapi landing page

If you do not wish to have the default landing page mounted on `/` you can create a custom middleware using the sample code below to automatically redirect to your custom `index.html` in the `./public` folder.

```js title="./config/middlewares.js"
module.exports = ({ env }) => [
// ...
{ resolve: '../src/middlewares/root' },
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
{ resolve: '../src/middlewares/root' },
"global::admin-redirect",

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I get Error: Middleware global::admin-redirect not found when I try this

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You need to change the name of your actual middleware.

];

```

```js title="./src/middlewares/root.js"
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
```js title="./src/middlewares/root.js"
```js title="./src/middlewares/admin-redirect.js"

const fs = require('fs');
const path = require('path');

module.exports = (_config, { strapi }) => {
const redirects = ['/', '/index.html'].map((routePath) => ({
method: 'GET',
path: routePath,
handler: (ctx) => {
// Read the index.html file
const filePath = path.resolve(__dirname, '../../public/index.html');
const fileContents = fs.readFileSync(filePath, 'utf8');

// Set the Content-Type header and send the file contents
ctx.type = 'html';
ctx.body = fileContents;
},
config: { auth: false },
}));

strapi.server.routes(redirects);
};
```