伪装URL请求(.htaccess)
最后更新于:2022-04-01 23:49:52
在 .htaccess 文件中 添加如下代码
~~~
RewriteRule ^这就是网站.html$ user/expense/index?&%{QUERY_STRING}
~~~
将访问url地址 **http:// ** ** .cn/user/expense/index**
更换为
**http:// ** ** .cn/这就是网站.html**
* * * * *
> 注意请将以上代码添加到默认规则的上面
** eq: **
~~~
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]
~~~
';