<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title></title>
</head>
<body>
<a href='test.php' target='black'>不好用的php</a><br>
<a href='css.css' target='black'>好用的css</a><br>
<a href='js.js' target='black'>好用的js</a><br>
<a href='1.html' target='black'>好用的html</a><br>
<br>
<a href=' fd/test.php' target='black'> 如果强制使用fd/test.php好用</a><br>
</body>
</html>
<?php
echo 111;
?>
-------------------------
RewriteEngine On
# 将test.anqun.org解析到/htdocs/typecho/文件夹下的博客网站
RewriteCond %{HTTP_HOST} ^test.anqun.org$
RewriteCond %{REQUEST_URI} !^/typecho/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /typecho/$1
RewriteCond %{HTTP_HOST} ^test.anqun.org$
RewriteRule ^(/)?$ typecho/index.html [L]
-------------------------
-------------------------
-------------------------
集结各类场景实战经验,助你开发运维畅行无忧