0
ここで.htaccessのための私のコードです.htaccessファイルやrobots.txtの書き換えURLどのように
RewriteEngine on
RewriteRule (.*) index.html
問題:mydomain.com/robots.txtその後、訪問ページは再び
をindex.htmlをするリダイレクト必須:
if(url contain robots.txt) Then
redirect to mydomain.com/robots.txt
else
redirect to index.html
あなたは私にあなたの連絡先、Facebook、Skypeまたは任意の電子メールを教えてください。 –
%{REQUEST_URI}とRewriteCond –
@Wasimの意味は何ですか?RewriteCondは "if CONDITION then"と同じです。 REQUEST_URIは実際に渡されたURIです(http://domain.tld/robots.txt)。見てください:http://httpd.apache.org/docs/current/mod/mod_rewrite.html –