Vojtěch Vokálek
Vojtěch Vokálek

Reputation: 63

PHP built-in web server .htaccess not working

I always start my server in cmd in directory, where I want root like so:

php -S 127.0.0.1:8000

Everything works, except for my .htaccess file. When I copy my project to htdocs, it works just fine.

Do you have any configuration tips or something, that can solve this? :)

Upvotes: 0

Views: 877

Answers (1)

BugHunter
BugHunter

Reputation: 1204

PHP's built in web server does not support .htaccess-es,because those are a part of the Apache web server.

Upvotes: 4

Related Questions