开发者

How can we do this via .htaccess?

开发者 https://www.devze.com 2023-03-11 22:53 出处:网络
We need to display the data from a wordpress install on a current page.Example would be: This page: http://www.example.com/facts/index.php

We need to display the data from a wordpress install on a current page. Example would be: This page: http://www.example.com/facts/index.php

needs to display the content from this page: http://www.example.com/news/new-facts/index.ph开发者_StackOverflow中文版p

How can we do this via .htaccess?


Yes you can.

RewriteEngine On
RewriteRule ^/facts/(.*)$ /news/new-facts/$1

Not sure if WordPress would accept that.

0

精彩评论

暂无评论...
验证码 换一张
取 消