我想将请求“index.php?_escaped_fragment_=about
”重定向到“snapshots/snap_about.html
”
但是我无法让它发挥作用:(
这是一个AJAX网站;我尝试请求example.com/index.php?_escaped_fragment_=about
时收到的网址是:
example.com/index.php?_escaped_fragment_=about#!about
这是我的htaccess
redirect index.php?_escaped_fragment_=about http://www.example.com/snapshots/snap_about.html
redirect /testx.html http://example.com/dummytest/index.html
重定向/testx.html有效。
也许我犯了一个大错误,但我是新手!
答案 0 :(得分:0)
我可能会使用RewriteRule来做到这一点。这是一次性的,还是可以应用于其他URL的一般模式?例如你也想要吗?
index.php?_escaped_fragment_=blah
要重定向到snapshots/snap_blah.html
?
如果没有,就像这样:
RewriteRule index\.php\?_escaped_fragment_=about snapshots/snap_about.html [NC,R=301]
如果是,请执行以下操作:
RewriteRule index\.php\?_escaped_fragment_=(.*) snapshots/snap_$1.html [NC,R=301]