Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有如下链接:
文件夹/dataBuy.asp?numOrder=578
我想重定向到
文件夹/dataBuy.php?numOrder=578
numOrder 是一个自动增量变量 (579, 580 ...) 我的服务器不支持 asp,所以我需要一个使用 htaccess 的解决方案。
有人可以帮忙吗?
通过启用 mod_rewrite 和 .htaccess httpd.conf,然后将此代码放在您.htaccess的DOCUMENT_ROOT目录下:
httpd.conf
.htaccess
DOCUMENT_ROOT
Options +FollowSymLinks -MultiViews # Turn mod_rewrite on RewriteEngine On RewriteBase / RewriteRule ^(folder)/([^.]+)\.asp$ /$1/$2.php [L,NC]