web-dev-qa-db-ja.com

URLは/#!/ splash-pageを生成しています

私のサイトは何らかの理由でシバンを生成しています-/#!/splash-pageをURLに。たとえば、www.modernvintage1005.comと入力すると、ブラウザーはwww.modernvintage1005.com/#!/splash-pageを返し、後続のページはすべて/#!/about/#!/contactなどとなります。

これについてGoogleにはまったく何もありません。ホームページから.index.phpを削除するための多くの書き換えヘルプがありますが、それだけです。

domain.comdomain.com/about.htmlなどと言うように書き換えるにはどうすればよいですか?

あなたがそれを見る必要がある場合、ここに私の。htaccessファイルがあります。

# Rewrite Rule
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]


</IfModule>

# compress text, html, javascript, css, xml:
<IfModule mod_deflate.c>
AddOutputFilterByType DEFLATE text/plain
AddOutputFilterByType DEFLATE text/html
AddOutputFilterByType DEFLATE text/xml
AddOutputFilterByType DEFLATE text/css
AddOutputFilterByType DEFLATE application/xml
AddOutputFilterByType DEFLATE application/xhtml+xml
AddOutputFilterByType DEFLATE application/rss+xml
AddOutputFilterByType DEFLATE application/javascript
AddOutputFilterByType DEFLATE application/x-javascript
AddType x-font/otf .otf
AddType x-font/ttf .ttf
AddType x-font/eot .eot
AddType x-font/woff .woff
AddType image/x-icon .ico
AddType image/png .png
</IfModule>

## EXPIRES CACHING ##
<IfModule mod_expires.c>
ExpiresActive On
ExpiresByType image/jpg "access 1 year"
ExpiresByType image/jpeg "access 1 year"
ExpiresByType image/gif "access 1 year"
ExpiresByType image/png "access 1 year"
ExpiresByType text/css "access 1 month"
ExpiresByType application/pdf "access 1 month"
ExpiresByType text/x-javascript "access 1 month"
ExpiresByType application/x-shockwave-flash "access 1 month"
ExpiresByType image/x-icon "access 1 year"
ExpiresDefault "access 2 days"
</IfModule>
## EXPIRES CACHING ##
1
user32642

"hashbang"または "Shebang"のURL構文は、ブラウザ履歴をAJAXサイトに提供し、JavaScriptを介して読み込まれたGoogleインデックスコンテンツを支援するために設計された古いハックです。 「FacebookのShebang/hashbang(#!)と新しいTwitterのURLは何ですか?」 を参照してください。

WordPressテーマである "John Smith"は、この方法でURLを書き換える責任があります。これにより、ページ全体を更新せずにJavaScriptを使用して各ページをロードし、コンテンツを Googleのクローラー にアクセス可能にします。 (これは、「AJAXポートフォリオテーマ」の「AJAX」が指すものです。).htaccessファイルとは何の関係もありません。

多くのウェブマスターは、hashbang URL構文を使用することは 理由はここにとどまる に対して悪い考えだと感じています。これはあまり将来性がなく、より良いオプションが利用できるようになりました。 (つまり "pushState" 、開発者がページを更新せずにブラウザのURLを変更できるHTML5機能。)

オプションは次のとおりです。

  • テーマ開発者に連絡し、テーマのAJAX機能をオフにしてhashbang URLを削除するオプションがあるかどうかを尋ねます。
  • テーマ開発者に連絡し、location.hashの代わりにpushStateを使用するようにテーマを変更することを検討するよう依頼します。 ( この記事 を参照してください。)これにより、ハッシュバンのないURLが得られます。
  • 別のWordPressテーマを使用します。
4
Nick