我需要在用户的视图页面源中伪造一个路径(通过右键单击我的网站并查看我的源代码)
例如
<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文件的原始路径,但是我的页面样式消失了,只剩下文本。