1

I have created a website and used Twig PHP for templating and Toro PHP for routing. Here's the url of my site, http://imbilly.esy.es. And when I visit the contact page (http://imbilly.esy.es/contact), it shows "No input file specified.". I have no idea on how to fix this.

This is what inside in my .htaccess:

RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f 
RewriteCond %{REQUEST_FILENAME} !-d 
RewriteCond $1 !^(index\.php) 
RewriteRule ^(.*)$ /index.php/$1 [L]

Contact form code: enter image description here

SteveFerg
  • 3,466
  • 7
  • 19
  • 31

1 Answers1

1

You need to replace

RewriteRule ^(.*)$ /index.php/$1 [L]

with

RewriteRule ^(.*)$ /index.php?/$1 [L]
Hardoman
  • 254
  • 1
  • 13