私はこれを試しています:
.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 color red が存在します。