Maison  >  Article  >  développement back-end  >  求 .htaccess 跳转规则解决方案

求 .htaccess 跳转规则解决方案

WBOY
WBOYoriginal
2016-06-13 10:04:27873parcourir

求 .htaccess 跳转规则
要求将 类似于 http://wwww.adna.com/asdasd/9889/index.html?from=9292 
跳转到 http://wwww.adna.com/asdasd/9889/index.html 这个该怎么写呢?

------解决方案--------------------
RewriteEngine on

RewriteBase /

# hotel
RewriteRule ^index_(.*)$ index.html?from=$1 [NC]



你这样写9292 的值就丢了,你确认码
------解决方案--------------------

探讨
要求将 类似于 http://wwww.adna.com/asdasd/9889/index.html?from=9292
跳转到 http://wwww.adna.com/asdasd/9889/index.html 这个该怎么写呢?

------解决方案--------------------
这就是你的问题了
1、web 服务器中并没有应用了处理 html 所带参数,你要加上参数做什么?
2、形如 http://wwww.adna.com/asdasd/9889/index.html?from=9292 
这样的不被 google 收录,是因为他看上去像动态页面
这用重写是改变不了的!
Déclaration:
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn