使用 htaccess 隐藏文件夹或路径 css js 文件
hide folder or path css js files with httacces
我正在尝试这个:
.htaccess
# BEGIN
<IfModule mod_rewrite.c>
RewriteEngine On
#RewriteBase /proyect/rewrite/
RewriteRule ^css/(.*) /proyect/rewrite/wp-content/
</IfModule>
# END
html 文件
<!DOCTYPE html>
<html>
<head>
<!-- H1 COLOR BLUE -->
<link href="http://localhost/proyect/rewrite/wp-content/css/customjd.css" rel="stylesheet" type="text/css" >
<!-- H1 COLOR RED-->
<base href="/customjd.css" >
</head>
<body>
<h1>hello world!</h1>
</body>
</html>
但是没有任何反应。 h1 不要改变它的颜色。
PD:文件夹 wp-content 存在 customjd.css h1 颜色为红色。
将 htaccess
代码编辑为:
RewriteEngine On
RewriteRule ^(css/.*\.css)$ /proyect/rewrite/wp-content/
将HTML代码更改为:
<!DOCTYPE html>
<html>
<head>
<base href="/proyect/rewrite/">
<link href="css/customjd.css" rel="stylesheet" type="text/css">
</head>
<body>
<h1>hello world!</h1>
</body>
</html>
customjd.css
中的 CSS 代码是:
h1 {
color: red;
}
我正在尝试这个:
.htaccess
# BEGIN
<IfModule mod_rewrite.c>
RewriteEngine On
#RewriteBase /proyect/rewrite/
RewriteRule ^css/(.*) /proyect/rewrite/wp-content/
</IfModule>
# END
html 文件
<!DOCTYPE html>
<html>
<head>
<!-- H1 COLOR BLUE -->
<link href="http://localhost/proyect/rewrite/wp-content/css/customjd.css" rel="stylesheet" type="text/css" >
<!-- H1 COLOR RED-->
<base href="/customjd.css" >
</head>
<body>
<h1>hello world!</h1>
</body>
</html>
但是没有任何反应。 h1 不要改变它的颜色。
PD:文件夹 wp-content 存在 customjd.css h1 颜色为红色。
将 htaccess
代码编辑为:
RewriteEngine On
RewriteRule ^(css/.*\.css)$ /proyect/rewrite/wp-content/
将HTML代码更改为:
<!DOCTYPE html>
<html>
<head>
<base href="/proyect/rewrite/">
<link href="css/customjd.css" rel="stylesheet" type="text/css">
</head>
<body>
<h1>hello world!</h1>
</body>
</html>
customjd.css
中的 CSS 代码是:
h1 {
color: red;
}