0

例如,我需要通过用户(通过右键单击我的网站并查看我的源代码)来伪造查看页面源中 <link href="http://miads.in/oc-content/themes/modern/style.css" rel="stylesheet" type="text/css" /> 的路径http://miads.in/oc-content/themes/modern/style.css以及http://miads.in/pc-content/style/look/style.css.

我试着用 htaccess 写:

<IfModule mod_rewrite.c>
Options +FollowSymlinks
RewriteEngine On
RewriteRule ^oc-content/(themes)/(modern)/([a-z]+)\.(css)$ /pc-content/style/look/$4.$5 [L]
</IfModule>

但它不会改变查看点(查看源代码)中的任何路径,并且在源代码中它显示了 css 文件的原始路径,但我的页面样式消失了,只剩下文本。

4

0 回答 0