How to enable the rewrite module for Apache in CentOs

Source: Internet
Author: User
Tags centos

Centos configuration files are stored in:/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, then restart the server, and the service httpd restart, so that. htaccess can be used.

In my opinion, in CentOs, the method for enabling the rewrite module in Apache is the same as that in windows, but the interface is different.

Related Article

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.