htaccess - 创建从文件夹到html文件的符号链接

时间:2015-11-27 06:25:11

标签: apache .htaccess mod-rewrite url-rewriting

我想在文件夹 html 文件中创建符号链接。基本上我想要,例如localhost/aboutlocalhost/about.html上链接而不更改网址。由于我有多个网站,我只想要一个规则。这就是我到目前为止所做的:

Options -Indexes 
Options +FollowSymLinks
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_URI} ^/(?:about|product)(\/)?$ [NC]
RewriteRule ^ $1.php [L]
</IfModule>

1 个答案:

答案 0 :(得分:1)

请尝试以下规则(如果您需要html页面,为什么在.php中使用RewriteRule?):

RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d     # or RewriteCond $1 !-d
RewriteCond %{REQUEST_FILENAME}.html -f # or RewriteCond $1.html -f
RewriteRule ^(.*)/?$ /$1.html [L]