我想
www.example.com/tops/articles/first_article
重定向地址到地址
www.example.com/tops/test1.php?name = first_article.htaccess的目錄重定向
也
www.example.com/tops/galleries/first_gallery
重定向地址到地址
www.example.com/tops/test2.php?name=first_gallery
和所有其他地址一樣
www.example.com/tops/first_page
到
www.example。 com/tops/page.php?name = first_page
下面的htaccess文件給了我一個重定向循環。
RewriteEngine on
Options +FollowSymLinks
RewriteRule ^/tops/articles/(.+)$ /tops/test1.php?name=$1 [L]
RewriteRule ^/tops/galleries/(.+)$ /tops/test2.php?name=$1 [L]
RewriteCond %{SCRIPT_FILENAME} !-d
RewriteCond %{SCRIPT_FILENAME} !-f
RewriteRule (.*)$ ./page.php?name=$1
Doe的任何人有任何想法爲什麼是這樣的? 我在做什麼錯?
在此先感謝。
幾乎所有的東西。 –
請告訴我什麼是缺失的,所以我會知道下一次。 –
特別是模式'/ tops' –