我有一个网址:
https://myurl.com/IU/thisisastring
我需要将整个路径发送到IU文件夹中的索引文件,我不会总是知道thisisastring请求是什么。
目的地为https://myurl.com/IU/index.php
我不需要向用户显示原始URI。
另一些可能有用的信息是,这是在正常的WordPress网站之外运行的一个过程。
答案 0 :(得分:0)
在你的htaccess顶部,把它放在:
RewriteEngine on
RewriteRule ^IU/((?!index\.php).+)$ /IU/index.php?q=$1 [NC,L]
这会将 / IU / anystring 重写为 /IU/index.php?q=anystring 。