我想要做的事情非常簡單。我想編輯一個標準Centos服務器上的網頁的html文件。我可以很好地訪問它,Apache設置爲在/ var/www/sitename中查找。這裏是我的問題:使用Putty和FTP查找文件
我要編輯的頁面的URL是像這樣:http://www.yoursite/page1
我認爲,地方在/ var /網絡/網站名稱,應該有一個叫做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.
*/
檢查.htaccess沒有做一些詭計 – case1352