作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的 .htaccess 配置有问题,这是配置的一部分:
RewriteCond %{QUERY_STRING} ^token=(.*)
RewriteRule ^aplikasi/(.*).asp aplikasi.php?halaman=$1&token=%1
配置的结果是:
http://{domain}/aplikasi/{$1}.asp?token={%1}
如果我使用此链接:
http://{domain}/aplikasi/{$1}.asp
我有 404 错误,我的问题是:如何使用可选 token 参数进行创建(我想要“?token={%1}”是可选的)
最佳答案
你有两种可能性。
token
RewriteCond %{QUERY_STRING} ^$ [OR]
RewriteCond %{QUERY_STRING} ^token=([^&\s]+)$ [NC]
RewriteRule ^aplikasi/(.+)\.asp$ /aplikasi.php?halaman=$1&token=%1 [L]
RewriteRule ^aplikasi/(.+)\.asp$ /aplikasi.php?halaman=$1 [L,QSA]
关于apache - 如何在 Apache 中创建可选的 RewriteCond,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46069202/
我是一名优秀的程序员,十分优秀!