最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

permalinks - .htaccess to redirect to a wp page

programmeradmin1浏览0评论

My custom .htaccess commands are above the WP ones. This is working:

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule ^$ wp-content/ahoj.txt [N]
</IfModule>

It shows the contents of my file ahoj.txt at the root of example

While this isn't working:

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule ^$ language/ [N]
</IfModule>

As language/ is not a real directory, but a permalink set by wp (wpml). How do I make the contents of example/language visible at example without changing the URL?

发布评论

评论列表(0)

  1. 暂无评论