私がやりたいことはとても簡単です。標準のCentosサーバーにあるWebページのhtmlファイルを編集したい。私はそれにうまくアクセスでき、Apacheは/ var / www/sitenameを調べるように設定されています。これが私の問題です:
編集したいページのURLは次のようになっています:http://www.yoursite/page1
/ var / www / sitenameのどこかに、page1.htmlというファイルがあるはずだと思います。しかし、ありません。FileZillaとPuttyで検索関数を実行しました(find / var / www / yoursite / -exec grep -l "jeyword-from-page-1" {} \;
とてもシンプルに見えますが、編集するファイルが見つかりません。どこで探すべきですか?任意のアイデアやヒントは大歓迎です。よろしくお願いします!
編集:
返信ありがとうございます。htaccessファイルで見つけたものは次のとおりです。
<FilesMatch "\.(engine|inc|info|install|make|module|profile|test|po|sh|.*sql|theme|tpl(\.php)?|xtmpl|svn-base)$|^(code-style\.pl|Entries.*|Repository|Root|Tag|Template|all-wcprops|entries|format)$">
Order allow,deny
</FilesMatch>
# Set the default handler.
DirectoryIndex index.php
# If your site is running in a VirtualDocumentRoot at http://example.com/,
# uncomment the following line:
RewriteBase /
# Rewrite URLs of the form 'x' to the form 'index.php?q=x'.
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !=/favicon.ico
RewriteRule ^(.*)$ index.php?q=$1 [L,QSA]
</IfModule>
これらは私には疑わしいと思われるものであり、他の行とは珍しいことではありません。これでいいの?
EDIT2:index.phpファイルでこれらの行を見つけました:
/**
* @file
* The PHP page that serves all page requests on a Drupal installation.
*
* The routines here dispatch control to the appropriate handler, which then
* prints the appropriate page.
*
* All Drupal code is released under the GNU General Public License.
* See COPYRIGHT.txt and LICENSE.txt.
*/