The requested URL was not found on this server

1.把apache配置文件
<Directory /home/test> 
Options FollowSymLinks
AllowOverride None
Order deny,allow
allow from all
</Directory>
修改为:

<Directory /home/test>
Options FollowSymLinks
AllowOverride All
</Directory>
2.检查.htaccess文件

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
原文地址:https://www.cnblogs.com/peteremperor/p/10875566.html