0
我如何可以重定向http://example.com/sub/students/student_type/1到 http://example.com/sub/profile/1重定向規則需要
子是一個子文件夾,下面是htacsess文件
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /sub/
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /sub/index.php [L]
</IfModule>