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.
次のようなリンクがあります。
folder/dataBuy.asp?numOrder=578
リダイレクトしたい
folder/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]