你能帮我.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
感谢您的回答。