【发布时间】:2015-11-09 19:55:34
【问题描述】:
网址:localhost/studentlibrary2/index.php/front_side/home
从 URL index.php/front_side 中删除
如何删除“index.php/front_side”?
【问题讨论】:
网址:localhost/studentlibrary2/index.php/front_side/home
从 URL index.php/front_side 中删除
如何删除“index.php/front_side”?
【问题讨论】:
将此代码放入您的 htaccess 文件中。
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?/$1 [L]
【讨论】: