我想知道是否可以使用Apaches.htaccess
重写文件夹名称-使用WordPress函数。
假设我有一个url,如:
http://example.com/folder1/folder2/page.php
现在我想将url重写为(例如)
http://example.com/testing/folder2/page.php
The
folder1
是一个现有的url。如何将其更改为
testing
?
我在“互联网上的某个地方”找到了以下内容:
<IfModule mod_alias.c>
RedirectMatch 301 /testing/folder2/(.*) /folder1/folder2/$1
</IfModule>
我需要它作为PHP函数在WordPress中使用它。