在conf文件加下找到convention.php文件配置一下,开启URL重写机制
然后创建.htaccess
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]
我记得thinkphp里面是不是有路由功能,你去看一下!
rewrite 规则
RewriteEngine On
RewriteCond %{REQUEST_URI} !^/css/.*
RewriteCond %{REQUEST_URI} !^/scripts/.*
RewriteCond %{REQUEST_URI} !^/images/.*
RewriteRule ^.*$ index.html [QSA,NC,L]
这个是url重写吧,thinkPHP里四种重写的方式都可以实现的!