$conf, $runtime; function_exists('chdir') AND chdir(APP_PATH); $r = 'mysql' == $conf['cache']['type'] ? website_set('runtime', $runtime) : cache_set('runtime', $runtime); } function runtime_truncate() { global $conf; 'mysql' == $conf['cache']['type'] ? website_set('runtime', '') : cache_delete('runtime'); } register_shutdown_function('runtime_save'); ?>url rewriting - Wordpress index in subdirectory, blogposts in root directory|Programmer puzzle solving
最新消息:Welcome to the puzzle paradise for programmers! Here, a well-designed puzzle awaits you. From code logic puzzles to algorithmic challenges, each level is closely centered on the programmer's expertise and skills. Whether you're a novice programmer or an experienced tech guru, you'll find your own challenges on this site. In the process of solving puzzles, you can not only exercise your thinking skills, but also deepen your understanding and application of programming knowledge. Come to start this puzzle journey full of wisdom and challenges, with many programmers to compete with each other and show your programming wisdom! Translated with DeepL.com (free version)

url rewriting - Wordpress index in subdirectory, blogposts in root directory

matteradmin6PV0评论

For our website we want to start a blog in the subdir domain/blog but for SEO value we would like the blogposts as domain/blogpost1.html . Is this possible in wordpress?

For our website we want to start a blog in the subdir domain/blog but for SEO value we would like the blogposts as domain/blogpost1.html . Is this possible in wordpress?

Share Improve this question asked Nov 20, 2018 at 6:31 PimPim 1
Add a comment  | 

1 Answer 1

Reset to default 0

It is possible to install WordPress in its own folder as describe above. If you want a blog post to end with .html that is also possible.

The following link provides an answer on how to do this via code: Add .html (dot HTML) extension to custom post types

Additionally, if you search the WordPress plugin repository, you'll find plugins that do this as well.

Post a comment

comment list (0)

  1. No comments so far