TP5路由问题

想要隐藏index.php和能够直接域名访问我们想要的首页,那么首先,要把我们服务器地址指向该项目的public下面;如order项目:WWW/order/public;

然后在public文件夹下面有个.htaccess文件需设置为:

#
#    Options +FollowSymlinks -Multiviews
#    RewriteEngine on
#
#    RewriteCond %{REQUEST_FILENAME} !-d
#    RewriteCond %{REQUEST_FILENAME} !-f
#    RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]
#
<IfModule mod_rewrite.c>
Options +FollowSymlinks -Multiviews
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php?/$1 [QSA,PT,L]
IfModule>
上面那个注释的是原来的,区别是index.php?多了一个问号;这样设置之后index.php就可以隐藏了;
关于在route.php文件里面的配置:
 
  
'__alias__' =>  [
    'my'  =>  ['index/index',['ext'=>'html']],
],
'index'=>'@index/Index/index'

添加这些好像可以隐藏指定模块、方法,这样最后生成的url就可以是localhost/index.html这样吧;
 
  
 
  
 
  
 
  

你可能感兴趣的:(PHP)