標籤:c style class blog tar http
Windows下自由建立.htaccess檔案的N種方法.htaccess是apache的存取控制檔案,apache中httpd.conf的選項配合此檔案,完美實現了目錄、網站的存取控制,當然最多的還是rewrite功能,即URL重寫,PHP中實現偽靜態一個重要途徑,也是被公認為SEO中搜尋引擎友好的極為有效一個手段。
儘管前些天的黑屏風波鬧的沸沸揚揚,但依本人拙見,windows使用者並無任何減少。現在的一個實際問題就是windows不允許重新命名時.的前面沒有字元,它認為這樣的檔案名稱是不合法的。這就造成我們無法通過重新命名”建立文字文件.txt”為”.htaccess”來建立此存取控制檔案,但是,事情總有解決的辦法。
直接通過文本編輯工具儲存,例如記事本,ultraEdit等等,不過儲存的時候選擇所有檔案就可以了,這實在是一個欠揍的方法,不過肯定不是我欠揍,欠揍的是微軟,華麗來一張:
apache去掉index.php
1.編輯conf/httpd.conf設定檔
#LoadModule rewrite_module modules/mod_rewrite.so 把該行前的#去掉
同時對應Directory下要配置 AllowOverride All
2.在 CI 根目錄下(即在index.php,system的同級目錄下)建立立一個設定檔,命名為: .htaccess 內容如下:
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond $1 !^(index\.php|robots\.txt)
RewriteRule ^(.*)$ index.php/$1
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(application|modules|plugins|system|themes) index.php/$1 [L]
3.把system/application/config/config.php 中$config[‘index_page‘] = "index.php";改為$config[‘index_page‘] = "";
4.重啟apache
來自為知筆記(Wiz)