Heim  >  Artikel  >  Backend-Entwicklung  >  通过PATH_INFO的方式来实现搜索引擎友好 隐藏index.php_PHP教程

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

WBOY
WBOYOriginal
2016-07-13 17:42:051379Durchsuche

  我习惯使用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能看到扩展名很不爽,解决...
Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn