我需要通过mod_rewrite规则重定向传递原始URI

时间:2017-02-26 17:28:01

标签: apache .htaccess mod-rewrite

我有一个网址:

https://myurl.com/IU/thisisastring

我需要将整个路径发送到IU文件夹中的索引文件,我不会总是知道thisisastring请求是什么。

目的地为https://myurl.com/IU/index.php

我不需要向用户显示原始URI。

另一些​​可能有用的信息是,这是在正常的WordPress网站之外运行的一个过程。

1 个答案:

答案 0 :(得分:0)

在你的htaccess顶部,把它放在:

RewriteEngine on
RewriteRule ^IU/((?!index\.php).+)$ /IU/index.php?q=$1 [NC,L]

这会将 / IU / anystring 重写为 /IU/index.php?q=anystring