0

代码中的 3 条注释相当准确地解释了我想要实现的目标。

<IfModule mod_rewrite.c>
RewriteEngine On

# Change secretdiary.org/index.php?url=URL to secretdiary.org/URL on the browser's url
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?url=$1 [PT,L]

# Redirect http://www.secretdiary.org/ to http://secretdiary.org/
RewriteCond %{HTTP_HOST} !^secretdiary.org$ [NC]
RewriteRule ^(.*)$ http://secretdiary.org/$1 [L,R=301]

# Add trailing slash / if there's none
RewriteCond %{REQUEST_URI} !(/$|\.) 
RewriteRule (.*) %{REQUEST_URI}/ [R=301,L]
</IfModule>

但是,我发现了一些问题,我认为它们来自于将条件放在一起。当我输入www.secretdiary.org/about时,它会(在浏览器中显示)到secretdiary.org/index.php?url=about,删除 www 但忽略第一条规则。切换顺序根本没有帮助,也没有搞乱RewriteBase。但是,如果我在没有 的情况下正常输入www,则 uri 将正常显示secretdiary.org/about,而无需任何重写。为什么会这样,我该如何解决?

此外,我已经按照这个答案另一个尝试在缺少时自动向 uri 添加斜杠。我可以用 PHP ( 实现它if (substr($_GET['url'], -1) != "/") header("Location: " . htmlspecialchars($_GET['url']) . '/');,但现在让我感到困扰的是我无法用 .htaccess 实现它,所以如果你也能发现这里的问题在哪里,那将非常有帮助。

4

2 回答 2

1

试试这个 .htaccess 代码:

RewriteEngine On

# Change secretdiary.org/index.php?url=URL to secretdiary.org/URL on the browser's url
RewriteCond %{HTTP_HOST} ^secretdiary.org$ [NC]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?url=$1 [L]

# Redirect http://www.secretdiary.org/ to http://secretdiary.org/
RewriteCond %{HTTP_HOST} !^secretdiary.org$ [NC]
RewriteRule ^(.*)$ http://secretdiary.org/$1 [R=301]

# Add trailing slash / if there's none
RewriteRule ^([^/]*)[^/]$ $1/ [R=301,L]

我不确定最后一条规则。

于 2013-07-16T06:20:59.370 回答
0

我面临的主要问题是 Firefox 存储 301 重定向,这使得 .htaccess 中的更改“不起作用”。我删除了缓存,现在它运行良好,尽管我在 PHP 中添加了尾部斜杠以避免头痛。

.ht 访问:

<IfModule mod_rewrite.c>
RewriteEngine On

# For some shady reason, this redirect should be first.
# Redirect http://www.secretdiary.org/ to http://secretdiary.org/
RewriteCond %{HTTP_HOST} !^secretdiary.org$ [NC]
RewriteRule ^(.*)$ http://secretdiary.org/$1 [L,R=301]

# Change secretdiary.org/index.php?url=URL to secretdiary.org/URL on the browser's url
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?url=$1 [PT,L]
</IfModule>

索引.php:

<?php
// Redirect if there's no trailing slash
if (!empty($_GET['url']) && substr($_GET['url'], -1) != "/")
  {
  header ('HTTP/1.1 301 Moved Permanently');
  header ("Location: http://secretdiary.org/" . htmlspecialchars($_GET['url']) . "/");
  }

// The rest of the php
于 2013-07-16T22:05:32.163 回答