六零导航如何设置伪静态规则,生成sitemap.xml文件?

东海大仙 2024-11-03 13:18:07 86

apache服务器在网站根目录的.htaccess文件:加入下列代码:

<IfModule mod_rewrite.c>
RewriteEngine on
RewriteBase / 
RewriteRule ^site-(\d+)\.html$ /site/index.php?id=$1 [L]
RewriteRule ^sitemap.xml$ /site/sitemap.php [L]
</IfModule>

Nginx规则:

location / {
    if (!-e $request_filename) {
 rewrite ^/site-(\d+)\.html$ /site/index.php?id=$1 last;
 rewrite ^/sitemap.xml$ /site/sitemap.php last;
    }
}

重新启动服务即可生效。

hao1256comcn.jpg


手机扫描二维码访问

The End
微信