2013-08-24 52 views
0

我正在爲我的公司內聯網製作一個社交網絡。我已經成功地使用htaccess從我的url中刪除index.php文件,但是,有一個「profile.php」文件,它將允許用戶提取另一個用戶配置文件。有沒有辦法使用.htaccess和mod_rewrite來刪除index.php和profile.php?Mod_Rewrite Apache刪除2個文件

這是我目前htaccess文件:

RewriteEngine on 
RewriteCond $1 !^(index\.php|css|images|robots\.txt) 
RewriteRule ^(.*)$ /index.php/$1 [L] 

同樣,我希望能夠去除profile.php以及在index.php。

編輯:我在CentOS服務器上運行cPanel的最新版本。

回答

0

由於沒有人回答了一個多星期,我做了這個迂迴的方式。我將所有404請求重定向到一個profile.php,但不包括所有現有的文件和目錄。

然後我只刪除了profile.php,因爲index.php被列爲目錄索引。

完成後,profile.php找到配置文件並顯示必要的信息。