本篇目的:简单美化下url,隐藏index.php (大部分MVC框架基本一样)
新建 .htaccess 文件,内容如下:
RewriteEngine on RewriteCond $1 !^(index\.php|images|res|js|css|robots\.txt) RewriteRule ^(.*)$ /index.php/$1 [L]
复制一份到跟目录: /.htaccess 和后台 /admin/.htaccess
再次访问的时候,就不用带上index.php了
http://localhost/welcome/ 确实舒服些。
如果不成功,请检查apache的rewrite是否未开启。
时间: 2024-10-01 00:56:20