0

Wordpress 3.5 .htaccess ファイルを編集して、いくつかの URL リダイレクト ルールを定義したいと考えています。

Redirect http://localhost/my_site/blog/cat/hello-world to http://localhost/my_site/cat/hello-world

私は試した

Redirect 301 /localhost/my_site/blog/cat/hello-world/ http://localhost/my_site/hello-world/

そしてまた

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /my_site/

Redirect 301 http://localhost/my_site/blog/cat/hello-world/ http://localhost/my_site/cat/hello-world/

RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /my_site/index.php [L]
</IfModule>

しかし、ブラウザは言う

ページが見つかりません

これはちょっと恥ずかしいですね。

任意のアイデア..どうすればこれを行うことができます..?

4

1 に答える 1