Maison  >  Article  >  développement back-end  >  通过PATH_INFO的方式来实现搜索引擎友好 隐藏index.php_PHP教程

通过PATH_INFO的方式来实现搜索引擎友好 隐藏index.php_PHP教程

WBOY
WBOYoriginal
2016-07-13 17:42:051379parcourir

  我习惯使用PATH_INFO的方式来实现搜索引擎友好,比如:

  http://www.xxx.com/index.php/module/xxx/action/xxx/id/xxx

  但是index.php能看到扩展名很不爽,解决方法如下:

  如何隐蔽应用:例如 .php,的扩展名:

  在APACHE中这样配置:

  ForceType application/x-httpd-php

  如何更像静态页面:app_name/my/app.html

  解析的PATH_INFO参数的时候,把最后一个参数的最后5个字符“.html”截断即可。

  注意:APACHE2中缺省是不允许PATH_INFO的,需要设置 AcceptPathInfo on

  http://www.xxx.com/index/module/xxx/action/xxx/id/xxx

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/486086.htmlTechArticle我习惯使用PATH_INFO的方式来实现搜索引擎友好,比如: http://www.xxx.com/index.php/module/xxx/action/xxx/id/xxx 但是index.php能看到扩展名很不爽,解决...
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