htaccess RewriteRule 与变量,有人吗?
这段代码有什么问题!啊啊!!
Options +FollowSymlinks
RewriteEngine on
RewriteRule ^tags/([^/]+) tags.php?tag=$1 [NC]
我正在尝试将我的网址清理为 http://mydomain.com/tags/tag 名称
What is wrong with this code! arghhh!!
Options +FollowSymlinks
RewriteEngine on
RewriteRule ^tags/([^/]+) tags.php?tag=$1 [NC]
I'm trying to clean my URL up to http://mydomain.com/tags/tag names here
from http://mydomain.com/tags.php?tag=tag names here
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是本地 (
.htaccess
) 或全局 (httpd.conf
) 配置的摘录吗?/
开头(RewriteRule ^/tags/([^/]+)tags.php?tag=$1 ...
)。/var/www
)。检查权限 (www.www 640
)。如果没有帮助,请启用日志记录:
Is this the extract from your local (
.htaccess
) or global (httpd.conf
) config?/
(RewriteRule ^/tags/([^/]+) tags.php?tag=$1 ...
)./var/www
). Check the permissions (www.www 640
).If does not help, enable logging:
我想你想要一个 $ 符号在那里
I think you want a $ sign in there