慕容4593909
2017-12-23 11:26
访问时使用 restful/articles 提示404
使用 restful/index.php/articles ,才能访问。
.htaccess文件查看正常。 不知道大家有人遇到过吗?
参考 的这个答案:
https://www.imooc.com/qadetail/211091
在 httpd-vhosts.conf 文件中,更改当前网站的配置
添加
<Directory "/Users/hello/PhpstormProjects/example"> Options Indexes FollowSymLinks AllowOverride All </Directory>
更改后为
<VirtualHost *:80> <Directory "/Users/hello/PhpstormProjects/example"> Options Indexes FollowSymLinks AllowOverride All </Directory> DocumentRoot "/Users/hello/PhpstormProjects/example" ServerName phpexample.com ErrorLog "logs/phpexample.com-error_log" CustomLog "logs/phpexample.com-access_log" common </VirtualHost>
重启apache就正常了
Restful API实战
44002 学习 · 118 问题
相似问题