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

Apache pseudo-static switch to nginx

2025-02-24 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Servers >

Share

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

1.apache pseudo-static configuration

Vim httpd.conf# [plain] view plain copy# loading module LoadModule rewrite_module modules/mod_rewrite.so# loading .htaccessAccessFileName .htaccess Order allow,deny Deny from all Satisfy All# is set to All, then read .htaccess content [plain] view plain copyOptions FollowSymLinks AllowOverride All

2.apache pseudo-static file

# cat .htaccess RewriteEngine OnRewriteCond% {REQUEST_FILENAME}-s [OR] RewriteCond% {REQUEST_FILENAME}-l [OR] RewriteCond% {REQUEST_FILENAME}-dRewriteRule ^. * $- [NC,L] RewriteRule ^. * $index.php [NC,L]

3. Configure nginx pseudo-static

Location / {if (!-f $request_filename) {rewrite ^ / (. *) $/ index.php?s=$1 last; break;}}

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

Servers

Wechat

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

12
Report