伪静态是指通过URL重写技术,将动态URL转换为看似静态的URL形式,既保持了静态URL的优点(如SEO友好),又保留了动态处理的灵活性。
大多数Nginx安装默认包含rewrite模块,可以通过以下命令检查:
nginx -V 2>&1 | grep -o with-http_rewrite_module
通常位于/etc/nginx/nginx.conf
或/etc/nginx/sites-available/your_site
server {
listen 80;
server_name example.com;
location / {
# 开启伪静态的核心配置
try_files $uri $uri/ /index.php?$query_string;
# 或者使用rewrite规则
# rewrite ^/(.*)$ /index.php?$1 last;
}
# 处理PHP文件
location ~ \.php$ {
include fastcgi_params;
fastcgi_pass unix:/var/run/php/php7.4-fpm.sock;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
}
}
location / {
try_files $uri $uri/ /index.php?$args;
}
location / {
try_files $uri $uri/ /index.php?$query_string;
}
location / {
if (!-e $request_filename) {
rewrite ^(.*)$ /index.php?s=$1 last;
break;
}
}
修改完成后,测试配置并重载:
nginx -t # 测试配置
systemctl reload nginx # 重载配置
if ($http_host != "www.example.com") {
rewrite ^(.*)$ http://www.example.com$1 permanent;
}
location /uploads/ {
try_files $uri =404;
}
location / {
try_files $uri $uri/ /index.php?$query_string;
}
rewrite_log on;
error_log /var/log/nginx/rewrite.log notice;
如需特定应用的伪静态规则,请提供更多关于您使用的应用程序信息,我可以提供更精确的配置方案。