我正在尝试从所有文件重定向到模板文件。但重定向仅在我指定 URL 时有效
例如:
不起作用(它不会重定向)
Options -Indexes
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule (.*) /template.php?page=$1 [L,QSA]
作品(重定向到http://domain.com/versioned/template.php?page=index.html)
Options -Indexes
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule (.*) http://domain.com/versioned/template.php?page=$1 [L,QSA]
第二个选项是更改浏览器中的 URL。我需要保留原始 URL。
谢谢
问题在于
RewriteCond %{REQUEST_FILENAME} -d
RewriteCond %{REQUEST_FILENAME} -f
如果我退出它,它会起作用,但不是在 URL 中返回当前文件,而是总是返回 template.php