Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to hide index.php suffixes in laravel5 environment

2025-04-07 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/01 Report--

In this article Xiaobian for you to introduce in detail "how to hide the index.php suffix in the laravel5 environment", the content is detailed, the steps are clear, and the details are handled properly. I hope this article "how to hide the index.php suffix in the laravel5 environment" can help you solve your doubts.

1 、 sudo vim / etc/hosts

Add: 127.0.0.1 xuan.blog (later I found that you can fill it in freely.)

2. Enable mod_rewrite

Sudo a2enmod rewrite

Then restart the apache server

Sudo service apache2 restart

3. Modify apache2.conf

Sudo vim / etc/apache2/apache2.conf

At the end, add:

ServerName localhostDirectoryIndex index.html index.htm index.php

And modify:

Options Indexes FollowSymLinks AllowOverride all (here changed to all) Require all granted

4. Add blog.conf (configure the virtual site, which name can also be changed)

Sudo vim / etc/apache2/sites-available/blog.conf

Add:

ServerName xuan.blogDocumentRoot / var/www/html/blog/publicErrorLog ${APACHE_LOG_DIR} / error.logCustomLog ${APACHE_LOG_DIR} / access.log combined

5. Enable virtual sites

Sudo a2ensite blog.confsudo service apache2 reload

6. Finally, set the permissions

Sudo chmod-R 0777 / var/www/html/blog read here, this article "how to hide the index.php suffix in the laravel5 environment" has been introduced. If you want to master the knowledge of this article, you still need to practice and use it before you can understand it. If you want to know more related articles, welcome to follow the industry information channel.

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report