更改源代码显示路径

时间:2011-03-06 17:16:00

标签: html wordpress

有没有办法在源代码(浏览器)中更改路径名?

http://my.domain.com/pathname/cms/wp-content/themes/themename/example/example.js

喜欢http:////my.domain.com/pathname/example/example.js

我不喜欢人们可以查看完整路径目录

当您使用<?php bloginfo('template_url'); ?><?php bloginfo('stylesheet_url'); ?>时 完整路径会自动添加...

任何建议如何隐藏这个?

1 个答案:

答案 0 :(得分:0)

您可以设置.htaccess规则,如下所示:

RewriteEngine On
RewriteRule ^pathname/example/(.*)$ pathname/cms/wp-content/themes/themename/$1 [NC,L]

然而,当然,您仍然需要编辑模板中文件的路径。