我正在为我的公司内部网创建一个社交网络。我已经成功地利用 htaccess 从我的 url 中删除 index.php 文件,但是,有一个“profile.php”文件将允许用户提取另一个用户配置文件。有没有办法使用 .htaccess 和 mod_rewrite 来删除 index.php 和 profile.php?
这是我当前的 htaccess 文件:
RewriteEngine on
RewriteCond $1 !^(index\.php|css|images|robots\.txt)
RewriteRule ^(.*)$ /index.php/$1 [L]
同样,我希望能够删除 profile.php 以及 index.php。
编辑:我在 CentOS 服务器上运行 cPanel 的最新版本。