This article will introduce you to The solution that prompts The requested URL *** was not found on this server error in linux. If you need to know about The solution, you can refer to it.
Because someone else installed nginx on The server, after I installed apache, The request URL *** was not found on this server appears, check/etc/httpd/conf/httpd. conf. cause:
DocumentRoot points to an error, so modify it. Make sure that your apache has enabled the rewrite_module module.
The rewrite_module module of Apache supports. htaccess.
The rewrite_module is not enabled. The enabling process is as follows:
Centos configuration files are placed in:
The Code is as follows: |
Copy code |
/Etc/httpd/conf/httpd. conf |
Open the file and find:
The Code is as follows: |
Copy code |
LoadModule rewrite_module modules/mod_rewrite.so |
Remove the preceding "#". If it does not exist, add the above sentence.
If your website is in the root directory: Find
The Code is as follows: |
Copy code |
<Directory/> Options FollowSymLinks AllowOverride None </Directory> |
Change None to All.
If your site is not in the root directory, set as follows:
The Code is as follows: |
Copy code |
<Directory "/var/www/html/my_directory"> Order allow, deny Allow from all AllowOverride All </Directory> |
OK, restart the server, and the service httpd restart, so that. htaccess can be used.