在htaccess文件中隐藏index.php

仅适用于Apache下面,如果你的Apache已经开启rewrite模块的话(大部分环境都已经开启),可以在.htaccess文件中添加下面代码:

<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]
</IfModule>


即可实现,把

http://thinkphp.cn/index.php/down

地址中的index.php隐藏,利用SEO。

你可能感兴趣的:(在htaccess文件中隐藏index.php)