我想编写一个htaccess文件,它接受输入链接并将它们转换为输出(这基本上是在/ test /之后添加的东西?location =
输入
答案 0 :(得分:2)
在测试目录的htaccess文件中,添加:
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ ?location=$1 [L]
或者在文档根目录中的htaccess文件中:
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^test/(.*)$ /test/?location=$1 [L]