user/55
すべてのリクエストがリダイレクトされる
単純なリダイレクトを作成しようとしていますfolder2/index2.html
私は wamp を実行している localhost でテストを行っています。私のプロジェクト階層は次のとおりです。
私はそのように定義.htaccess
しました:
Options +FollowSymLinks
RewriteEngine On
RewriteBase /
RewriteRule ^users/55 folder2/index2.html [R=301,L]
私のメインページはindex1.html
次のようになります。
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
<h1>Index1 page</h1>
<a href="users/55">go to second page</a>
</body>
</html>
リンクを押すと、リダイレクトがなく、代わりにエラーが発生します。
The requested URL /redirect/folder1/users/ was not found on this server.
Apache サーバーで mod_rewrite を有効にしましたが、ログにエラーが表示されません。簡単なガイドに従おうとしましたが、うまくいきません。