Version 3.1.9 - 64bit
Virtual host config -
<VirtualHost *:80>
ServerName emp.lcl
DocumentRoot "c:/wamp64/www/emp"
<Directory "c:/wamp64/www/emp/">
Options +Indexes +Includes +FollowSymLinks +MultiViews
AllowOverride All
Require local
RewriteEngine on
RewriteRule "^/api/employee/search/(.*)$" "/api/employee.py"
</Directory>
</VirtualHost>
Virtual Host is working fine. When i am trying to access the url instead of redirecting it is showing me below 404 error
The requested URL /api/employee/search was not found on this server.
Virtual host config -
<VirtualHost *:80>
ServerName emp.lcl
DocumentRoot "c:/wamp64/www/emp"
<Directory "c:/wamp64/www/emp/">
Options +Indexes +Includes +FollowSymLinks +MultiViews
AllowOverride All
Require local
RewriteEngine on
RewriteRule "^/api/employee/search/(.*)$" "/api/employee.py"
</Directory>
</VirtualHost>
Virtual Host is working fine. When i am trying to access the url instead of redirecting it is showing me below 404 error
The requested URL /api/employee/search was not found on this server.