你能帮助我.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。
我将网址用作http://domain.com/parameter/parameter
,但我现在需要使用http://domain.com/folder_test/parameter/parameter
感谢您的回答。
答案 0 :(得分:0)
取消注释#RewriteBase /
并将其设为RewriteBase /your_folder/
并尝试