Apache / PHP - 子文件夹中的重写规则重定向到根文件夹

时间:2016-02-06 18:26:01

标签: php apache .htaccess mod-rewrite cpanel

我想从网址中删除php文件的扩展名。

我正在使用CPanel来控制服务器上的虚拟主机。

我希望在没有扩展程序的情况下访问我的php文件位于" folder2 "。 Folder1 是一个子域名。

/public_html/folder1/folder2/file1.php

所以我在folder2中创建了一个.htaccess文件:

RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^([^/]+)/$ $1.php
RewriteRule ^([^/]+)/([^/]+)/$ /$1/$2.php
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !(\.[a-zA-Z0-9]{1,5}|/)$
RewriteRule (.*)$ /$1/ [R=301,L]

但是现在当我尝试访问链接时: http://folder1.domain.com/folder2/file1

我被重定向到http://folder1.domain.com/file1(这是404)。

.htaccess有什么问题?我应该在apache上启用什么吗?

0 个答案:

没有答案