需要为我的css创建虚假目录路径,但实际路径在服务器中执行

时间:2014-11-24 06:13:01

标签: .htaccess osclass

我需要在用户的视图页面源中伪造一个路径(通过右键单击我的网站并查看我的源代码) 例如 <link href="http://miads.in/oc-content/themes/modern/style.css" rel="stylesheet" type="text/css" /> 以及路径http://miads.in/oc-content/themes/modern/style.csshttp://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文件的原始路径,但是我的页面样式消失了,只剩下文本。

0 个答案:

没有答案