【发布时间】:2015-11-15 13:20:16
【问题描述】:
我正在尝试这个:
.htaccess
# BEGIN
<IfModule mod_rewrite.c>
RewriteEngine On
#RewriteBase /proyect/rewrite/
RewriteRule ^css/(.*) /proyect/rewrite/wp-content/$1
</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 的位置?
-
@hjpotter92 localhost/proyect/rewrite
标签: html css mod-rewrite base-tag