URL里面有index.php,不利于SEO,也看起来显得很冗长杂乱。
一些不好的例子:
http://pusicapital.com/index.php/home/news/shownews/id/43/pid/51/fid/52.html 王思聪普斯资本官网
目前,运行PHP的服务器主要有:Apache、Nginx、IIS等。以Apache为例,如何去掉URL中的index.php?
1、apache\conf\httpd.conf配置文件中加载了mod_rewrite.so模块,就是把前面的#去掉。
2、AllowOverride None 将None改为 All。
在Apache里面去配置,注意其他地方的AllowOverride也统统设置为All。
如果是TP3.2,需要在项目配置文件中修改REWRITE模式:
'URL_MODEL'=>2
TP5,此处略有不同。
3、把下面的内容保存为.htaccess文件,放到应用入口文件的同级目录下。
Options +FollowSymlinks -Multiviews
RewriteEngine on
RewriteCond % !-d
RewriteCond % !-f
RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]
4、重启Apache。
领取专属 10元无门槛券
私享最新 技术干货