The requested URL *** was not found on this server is prompted in linux

Source: Internet
Author: User

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.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.