作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我希望我的 URL 添加尾部斜杠,但前提是 URL 不以 anchor 结尾。
这是我当前的 .htaccess 文件
# ----------------------------------------------------------------------
# Enable Rewrite Engine
# ----------------------------------------------------------------------
RewriteEngine On
RewriteBase /
# ----------------------------------------------------------------------
# Remove the www from the URL
# ----------------------------------------------------------------------
RewriteCond %{HTTP_HOST} ^www\.(.+)$ [NC]
RewriteRule ^(.*)$ http://%1/$1 [R=301,L]
# ----------------------------------------------------------------------
# Add a trailing slash to paths without an extension
# ----------------------------------------------------------------------
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_URI} !(\.[a-zA-Z0-9]{1,5}|/)$
RewriteRule ^(.*)$ $1/ [L,R=301]
# ----------------------------------------------------------------------
# Remove index.php
# ----------------------------------------------------------------------
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /index.php/$1 [L]
当我链接到锚定部分时,URL 会写入:
http://mysite.com/subdir/#anchor
什么时候应该看起来像这样:
http://mysite.com/subdir#anchor
常规 URL 应如下所示:
http://mysite.com/directory/sub/
我很困惑,所以任何帮助都会很棒!
干杯,
丹
最佳答案
你看过 Apache 的 Directory Slash 了吗?设置?
这是我们在 .htaccess 中用来处理类似问题的方法
DirectorySlash Off
DirectoryIndex index.php index.html index.htm
关于apache - .htaccess 在页面上添加尾部斜杠,除非 # 在 URL 中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11127558/
我是一名优秀的程序员,十分优秀!