🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
在 .htaccess 文件中 添加如下代码 ~~~ RewriteRule ^这就是网站.html$ user/expense/index?&%{QUERY_STRING} ~~~ 将访问url地址 **http:// ** ** .cn/user/expense/index** 更换为 **http:// ** ** .cn/这就是网站.html** * * * * * > 注意请将以上代码添加到默认规则的上面 ** eq: ** ~~~ <IfModule mod_rewrite.c> Options +FollowSymlinks -Multiviews RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^这就是网站.html$ user/expense/index?&%{QUERY_STRING} RewriteRule ^(.*)$ index.php?s=$1 [QSA,PT,L] </IfModule> ~~~