Ubuntu-server 下Apache2 配置.htaccess 隱藏thinkPHP項目index.php

須要開啓Apache2的rewrite模塊php

一、打開/etc/apache2/apache2.confapache

將文件中的AllowOverride None改成AllowOverride All服務器

 

二、修改mods-enable配置,添加一個軟件連接ide

cd /etc/apache2/mods-enable
ln -s ../mods-avaiable/rewrite.load  rewrite.load

 

三、在項目根目錄下添加.htaccess文件,修改rewrite規則spa

<IfModule mod_rewrite.c>
RewriteEngine on

#不顯示index.php

RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]

</IfModule>

 

四、重啓服務器rest

service apache2 restart
相關文章
相關標籤/搜索