我的网站位于.html的根文件夹中。我使用重写引擎使链接看起来不错:
AddDefaultCharset utf-8
DirectoryIndex index.html
ErrorDocument 401 http://example.com
ErrorDocument 403 http://example.com
ErrorDocument 404 http://example.com
ErrorDocument 500 hhttp://example.com
Options All -Indexes
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
RewriteRule ^([^\.]+)$ $1.html [NC,L]
我想在/ board文件夹中安装CRM系统。但是由于.htaccess重写了html链接,所以无法使用/ board文件夹。您能否帮助我如何忽略.htaccess中的/ board文件夹?谢谢。