gpt4 book ai didi

wordpress - 将 .html 添加到 URL 末尾

转载 作者:行者123 更新时间:2023-12-02 23:36:45 29 4
gpt4 key购买 nike

我目前使用 Wordpress 作为博客平台,但我想更改为使用 Jekyll 来生成静态页面。在 WordPress 上,我的 URL 使用以下格式:

/年/月/日/标题

但我想将其重定向到

/年/月/日/title.html

我不知道如何使用 mod_rewrite 来做到这一点。

有人有什么想法吗?

最佳答案

RewriteEngine On
# Only if the URI is not a normal file
RewriteCond %{REQUEST_FILENAME} !-s
# ... or a symbolic link
RewriteCond %{REQUEST_FILENAME} !-l
# ... rewrite everything that ends on .html to the stripped down URL
RewriteRule (.+)\.html$ $1 [L]
# Alternatively, if you want to be more specific about the scheme, you can use this
# RewriteRule ^/([0-9]{4})/([0-9]{2})/([0-9]{2})/([^/]+)\.html$ $1/$2/$3/$4 [L}

上面应该为您提供一些有关如何正确地将 URL 重写为您想要的方案的指示。此示例透明地将以 .html 结尾的所有内容(实际文件除外)重写为同一 URL,而不附加 .html。

关于wordpress - 将 .html 添加到 URL 末尾,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2071245/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com