CentOs中Apache檔案訪問去除index.php

來源:互聯網
上載者:User

標籤:strong   span   ons   根目錄   3.2   網站   tar   配置   write   

0.apache下面和index.php同一個目錄下面的 .haccess

<IfModule mod_rewrite.c>     RewriteEngine on     RewriteCond %{REQUEST_FILENAME} !-d     RewriteCond %{REQUEST_FILENAME} !-f     RewriteRule ^(.*)$ index.php?s=/$1 [QSA,PT,L]</IfModule>

1.centos的設定檔放在: /etc/httpd/conf/httpd.conf

LoadModule rewrite_module modules/mod_rewrite.so

將前面"#"去掉,如果不存在則添加上句。

2.如果你的網站是根目錄的話:找到

<Directory />  Options FollowSymLinks  AllowOverride None  </Directory>

將上面的None改為All

3.如果你的網站不在根目錄,設定如下:

<Directory "/var/www/html/my_directory">   Order allow,deny  Allow from all  AllowOverride All</Directory>

然後重啟伺服器,service httpd restart ,這樣.htaccess就可以使用了

4.index.php (thinkphp3.2.3版本)

define(‘__APP__‘, ‘‘); //將index.php自動隱藏

CentOs中Apache檔案訪問去除index.php

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.