php url访问时出错
访问时使用 restful/articles 提示404
使用 restful/index.php/articles ,才能访问。
.htaccess文件查看正常。 不知道大家有人遇到过吗?
访问时使用 restful/articles 提示404
使用 restful/index.php/articles ,才能访问。
.htaccess文件查看正常。 不知道大家有人遇到过吗?
2017-12-23
在 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就正常了
举报