2016-09-12 19 views

回答

0

我不確定我是否理解。但是如果你想在url中省略「索引」。您需要使用.htaccess文件。這是一個例子:

RewriteEngine on 
RewriteCond $1 !^(index.php|assets|robots.txt) 
RewriteRule ^(.*)$ /directory/index.php/$1 [L] 
相關問題