我正在使用laravel routes
,但URL出现问题
例如
https://laracasts.com/discuss
。 -URL有一个双精度
https://laracasts.com/index.php/discuss
答案 0 :(得分:0)
如果尚不存在,请在Laravel根目录中创建一个.htaccess文件。如果您的Laravel根目录尚不存在,请创建一个.htaccess文件。 (通常在您的public_html文件夹下)
现在,您应该可以不带“ /public/index.php/”部分访问该网站。
编辑.htaccess文件,使其包含以下代码:
<IfModule mod_rewrite.c>
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [L]
</IfModule>