1

你能帮我.htaccess吗?我有简单的代码

Options -Indexes

RewriteEngine On
#RewriteBase /

# front controller
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule !\.(pdf|js|ico|gif|jpg|png|css|rar|zip|tar\.gz)$ index.php [L]

AddType application/x-httpd-php .php .phtml

如果我在根文件夹(localhost)上使用此代码,则此代码是可以的,但我需要在子文件夹中的服务器上测试此代码,index.php 也在哪里。

我使用 URL as http://domain.com/parameter/parameter,但我现在需要使用http://domain.com/folder_test/parameter/parameter

感谢您的回答。

4

1 回答 1

0

取消注释#RewriteBase /并制作RewriteBase /your_folder/并尝试

于 2013-02-26T10:36:05.647 回答