|
设置.htaccess如下:
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]
#新闻模块
RewriteRule ^index.php/notice-detail-([0-9]+).html$ index.php/notice/detail/$1.html
http://ci.com/notice-detail-2.html (CI2.0提示404)
http://ci.com/notice-detail-2.html (CI1.7可以执行notice/detail/)
设置路由的话
$route['notice-detail-(:num)'] ="notice/detail/$1"; CI2.0可以生效URL
$route['notice-detail-(:num)'] ="notice/detail/$1"; 1.7URL404
求真相 |
|