~~~
# No input file specified的解決方法
解決方案 如下 ?修改tp5/public/.htaccess 在 index.php后面加個問號 ?就可以解決了
<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>
~~~