Options -Indexes +FollowSymLinks -MultiViews
RewriteEngine On
RewriteCond %{HTTP_HOST} ^(.*)$ [NC]
RewriteCond %{HTTP_HOST} !^(.*)\.(.*)\. [NC]
RewriteCond %{HTTPS}s ^on(s)|
RewriteRule ^ HTTP%1://www.%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
RewriteCond %{REQUEST_URI} !(/$|\.)
RewriteRule (.*) %{REQUEST_URI}/ [R=301,L]
ServerSignature Off
RewriteRule ^cookie-policy/?$ cookie_policy.php [NC,L]`
你好,我正在努力与网址结束尾随斜线。
RewriteRule ^cookie-policy/?$ cookie_policy.php [NC,L]
例如,我想强制从www.website.com/cookie-policy
重定向到www.website.com/cookie-policy/
1条答案
按热度按时间ovfsdjhp1#
使用此选项:
它会在你的网址末尾添加一个
/
。请确保在测试之前清空你的缓存。