我在我的.htaccess文件中使用它...
Redirect /index.html http://jurrasicgames.net/JurrasicGamesDatFile/Index.html
Redirect /VIP.html http://jurrasicgames.net/JurrasicGamesDatFile/VIP.html
Redirect /sg.html http://jurrasicgames.net/Soon.SHMTL
Redirect /kitpvp.html http://jurrasicgames.net/JurrasicGamesDatFile/kitpvp.html
我希望http://jurrasicgames.net/JurrasicGamesDatFile/kitpvp.html看起来像http://jurrasicgames.net/KitPVP有没有办法做到这一点?
答案 0 :(得分:0)
不要使用Redirect
指令,因为它会执行完全重定向。改为使用内部重写。
.htaccess将在站点根目录中使用(高于JurrasicGamesDatFile
的级别)
RewriteEngine On
RewriteRule ^index\.html$ JurrasicGamesDatFile/Index.html [L,NC]
RewriteRule ^VIP\.html$ JurrasicGamesDatFile/VIP.html [L,NC]
RewriteRule ^sg\.html$ Soon.SHMTL [L,NC]
RewriteRule ^kitpvp\.html$ JurrasicGamesDatFile/kitpvp.html [L,NC]
确保在测试之前清除浏览器缓存。