WAMP has been behaving strangely for me and I can't figure out why ? Being new to WAMP make it much more difficult. I have been asking questions about the problems I am facing to deploy a Codeigniter project to WAMP setup on windows 10. I will leave links to my other posts which are unsolved at the end, maybe information in those will help someone understand what's going on.
The current situation is, when I load any page of the local project(website) except the homepage and check the net tab of firebug, it shows error 404, but the page does get loaded in the browser view. Although the POST request is not working like it should be, you can see my other question on it.
What's going on ?
Strange behaviour, WAMP - Codeigniter
WAMP Mysqli not working whereas Mysql works
WAMP and mysqli::real_connect(): (HY000/2002)?
Some more information :
Project .htaccess
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]
<Files "index.php">
AcceptPathInfo On
</Files>
</IfModule>
<IfModule !mod_rewrite.c>
ErrorDocument 404 /index.php
</IfModule>
Host File
127.0.0.1 localhost
::1 localhost
127.0.0.1 myProject
::1 myProject
Virtual Host
<VirtualHost *:80>
ServerAdmin contact@gmail.com
DocumentRoot "c:/wamp/www"
ServerName localhost
ServerAlias localhost
<Directory "c:/wamp/www">
Options Indexes FollowSymLinks
AllowOverride All
Require local
</Directory>
</VirtualHost>
<VirtualHost *:80>
ServerAdmin contact@gmail.com
DocumentRoot "c:/wamp/www/myProject/www"
ServerName myProject
ServerAlias myProject
ErrorLog "logs/myProject-error.log"
CustomLog "logs/myProject-access.log" common
<Directory "c:/wamp/www/myProject/www">
Options Indexes FollowSymLinks
AllowOverride All
Require local
</Directory>
</VirtualHost>