我想在文件夹到 html 文件中创建符号链接。基本上我想要,例如localhost/about
在localhost/about.html
上链接而不更改网址。由于我有多个网站,我只想要一个规则。这就是我到目前为止所做的:
Options -Indexes
Options +FollowSymLinks
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_URI} ^/(?:about|product)(\/)?$ [NC]
RewriteRule ^ $1.php [L]
</IfModule>
答案 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]