我想提出重写规则
RewriteRule /test /my/long/path/index.html
但我的index.html通过ajax获取其他文件,所以它不像这样简单。我需要一个规则用于目录
的所有子文件
我试过了:
RewriteRule /test /my/long/path/
RewriteRule /test/* /my/long/path/*
对不起我在Apache中的无知,以及thx
答案 0 :(得分:2)
您的RewriteRule无效。试试这个:
RewriteRule ^test(/.*)?$ my/long/path$1