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的最新版本。