Heim > Fragen und Antworten > Hauptteil
thinkRoute::rule('my_jump','/face.php');
Prompt für Fehler:
天蓬老师2017-07-07 16:32:34
首先,入口文件隐藏,现在已不需要用户手工操作了,框架已经将重写文件添加到框架中了。
think\Route::rule('my_jump','/face.php');中的 "/face.php"中的"/",这个解析到哪里啦?,路由地址的五种模式中,并无这种语法,如果你想路由到一个绝对地址,请写完整。否则不要加扩展名,严格按path_info规则来玩。
如果以上全部正确的话,可以考虑换一个浏览器再试。
VM2017-07-07 11:51:25
重写规则我就配置了隐藏入口文件的,
<IfModule mod_rewrite.c>
Options +FollowSymlinks -Multiviews
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
#RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]
#RewriteRule ^(.*)$ index.php?s=$1 [QSA,PT,L]
RewriteRule ^(.*)$ index.php [L,E=PATH_INFO:$1]
</IfModule>