我想在我的网站上添加时间戳
example.com /?时间戳
所以,如果链接是
example.com/#ch-30
就像这样
example.com/?210220161833#ch-30
我尝试使用此代码并添加index.php(example.com/index.php#ch-30) 所以我可以用?timestamp
替换index.phpRewriteEngine On
RewriteBase /
#only for the root directory
RewriteCond %{REQUEST_URI} ^/$
RewriteCond %{REQUEST_URI} !^/index.php [NC]
RewriteRule ^$ /index.php [R=301,L]