.htaccess将对localhost / <file path =“”>的调用更改为localhost / something / <file path =“”>

时间:2015-08-14 00:58:19

标签: php .htaccess

我查看了q&amp; a's并且无法根据答案找出如何做到这一点

如果我想制作

所有要求localhost / [file / path]

本地主机/东西/ [文件/路径]

什么是.htaccess

我试过了

RedirectMatch localhost / $ / something /

RedirectMatch ^ / $ / something /

1 个答案:

答案 0 :(得分:2)

尝试

RedirectMatch ^(.*)$ /something/$1 [L]

()捕获原始网址,以便稍后使用$1作为第一个捕获组。

注意:如果您正在使用查询字符串,请确保该标志为[L,QSA]